Skip to content

Commit

Permalink
extend to matrix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanssen2 committed May 14, 2024
1 parent a131c53 commit 23d04ba
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/sepp_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
branches: [ master ]

jobs:
strategy:
matrix:
pyversion: [3.9, 3.10]

python_tests:
runs-on: ubuntu-latest

Expand All @@ -24,7 +28,7 @@ jobs:
# conda CLI
use-mamba: true
mamba-version: "*"
python-version: "3.9"
python-version: "${{ py_version }}"
environment-file: ci/environment.yml
auto-activate-base: true
activate-environment: sepp_ci
Expand All @@ -49,6 +53,9 @@ jobs:
path-to-lcov: "coverage.lcov"

linting:
strategy:
matrix:
pyversion: [3.9, 3.10]
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand All @@ -64,7 +71,7 @@ jobs:
# conda CLI
use-mamba: true
mamba-version: "*"
python-version: "3.9"
python-version: "${{ py_version }}"
environment-file: ci/env_lint.yml
auto-activate-base: true
activate-environment: sepp_lint
Expand Down

0 comments on commit 23d04ba

Please sign in to comment.