Skip to content

Commit

Permalink
Merge pull request #6 from jlab/py310
Browse files Browse the repository at this point in the history
run matrix unit tests, i.e py3.9 and py3.10
  • Loading branch information
sjanssen2 authored May 14, 2024
2 parents a131c53 + 443d9ca commit 22a75c0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/sepp_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ on:

jobs:
python_tests:
strategy:
matrix:
python-version: ["3.9", "3.10"]
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand All @@ -24,7 +26,7 @@ jobs:
# conda CLI
use-mamba: true
mamba-version: "*"
python-version: "3.9"
python-version: ${{ matrix.python-version }}
environment-file: ci/environment.yml
auto-activate-base: true
activate-environment: sepp_ci
Expand All @@ -49,6 +51,9 @@ jobs:
path-to-lcov: "coverage.lcov"

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

0 comments on commit 22a75c0

Please sign in to comment.