Skip to content

Commit

Permalink
Update CI-CD_OpenMMDL.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
talagayev authored Oct 30, 2023
1 parent ab5d6db commit 2ea25ec
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI-CD_OpenMMDL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,23 @@ name: CI-CD_OpenMMDL


on: [push]

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base

0 comments on commit 2ea25ec

Please sign in to comment.