Skip to content

Commit

Permalink
Update CI-CD.yml
Browse files Browse the repository at this point in the history
Added Matrix for 3.10, 3.11 and 3.12 python versions
  • Loading branch information
talagayev authored Jul 29, 2024
1 parent 26e6c47 commit 0903242
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }}

- name: Add conda to system path
run: |
Expand All @@ -23,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
conda install -y python=3.10
conda install -y python=${{ matrix.python-version }}
conda env update --file environment.yml --name base
- name: Install package and its entry points
Expand Down

0 comments on commit 0903242

Please sign in to comment.