Skip to content

Commit

Permalink
Add py3.11 to CI, show package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AntObi committed Oct 6, 2023
1 parent 25bb4d2 commit 69c4263
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8","3.9","3.10"]
python-version: ["3.8","3.9","3.10","3.11"]
os: [ubuntu-latest,macos-latest,windows-latest]

runs-on: ${{matrix.os}}
Expand All @@ -32,6 +32,12 @@ jobs:
run: |
python -m pip install --upgrade pip wheel
python -m pip install -e ".[dev]"
- name: Check package versions
run: |
pip show -V elementembeddings
pip show -V pytest
pip show -V matplotlib
- name: Run tests
run: python -m pytest --mpl --mpl-baseline-path=src/elementembeddings/tests/baseline --cov=src/elementembeddings --cov-report=xml -v
Expand Down

0 comments on commit 69c4263

Please sign in to comment.