Skip to content

Commit

Permalink
chore: bump linters & fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Feb 5, 2025
1 parent feaf1a1 commit 58253a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test:
if: github.event_name != 'pull_request' || !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association)
name: Test py${{ matrix.python }}
runs-on: ubuntu-latest
runs-on: ubuntu-${{ matrix.python == 3.7 && '22.04' || 'latest' }}
strategy:
matrix:
python: [3.7, 3.12]
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install
run: pip install -U -e .[dev]
- run: pytest
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
deploy:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- flake8-pyproject
- flake8-string-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.14.1
rev: v1.15.0
hooks:
- id: mypy
additional_dependencies: [types-setuptools]
Expand All @@ -51,7 +51,7 @@ repos:
args: [-i]
additional_dependencies: [toml]
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort
ci:
Expand Down

0 comments on commit 58253a9

Please sign in to comment.