Skip to content

Commit

Permalink
TST: Update testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Dec 18, 2023
1 parent 1c8dbdf commit c0a664e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing_python_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-12, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v3"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing_python_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
strategy:
matrix:
os: [macos-12, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: "actions/checkout@v3"
with:
fetch-depth: 0

# Setup conda env
- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: graphbin
environment-file: environment.yml
Expand All @@ -43,4 +43,4 @@ jobs:
run: |
pip install pytest pytest-cov
pytest --cov=graphbin --cov-report=xml --cov-append

0 comments on commit c0a664e

Please sign in to comment.