Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlumpe committed Jul 10, 2024
1 parent 152d0c0 commit cbff5d7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ jobs:
python-version: [3.9, '3.10', 3.11, 3.12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
pyproject.toml
setup.cfg
- name: Install dependencies
run: |
Expand All @@ -30,7 +34,5 @@ jobs:
pip install .
- name: Test with pytest
env:
PY_IGNORE_IMPORTMISMATCH: 1
run: |
pytest

0 comments on commit cbff5d7

Please sign in to comment.