Skip to content

Commit

Permalink
Upgrade Python and GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Mar 28, 2024
1 parent 27751db commit 61cf73a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.7'
- python-version: '3.8'
- python-version: '3.10'
- python-version: '3.11'
- python-version: '3.12'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
cache: pip
cache-dependency-path: pyproject.toml
- run: pip install -U tox tox-gh
- run: pip install --upgrade tox tox-gh
- run: tox
Lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: pip
cache-dependency-path: pyproject.toml
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1

0 comments on commit 61cf73a

Please sign in to comment.