Skip to content

Commit

Permalink
Add matrix testing for unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
hadarshavit authored Jan 10, 2025
1 parent 2499beb commit 481017e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.10", "3.11", "3.12"]
services: # Required for Slurm cluster
mysql:
image: mysql:8.0
Expand All @@ -27,7 +29,7 @@ jobs:
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda install -y python=3.10.14 # https://github.com/conda/conda/issues/13560#issuecomment-1992720842
conda install -y python=${{ matrix.python-version }} # https://github.com/conda/conda/issues/13560#issuecomment-1992720842
conda env update --file dev-env.yml --name base
- name: Install RunSolver dependencies
run: |
Expand Down

0 comments on commit 481017e

Please sign in to comment.