Skip to content

Commit

Permalink
Add Python 3.12 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 11, 2023
1 parent 373945e commit e74a3f7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,26 @@ jobs:
max-parallel: 8
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-12]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- run: |
if [[ $(uname) == Linux ]]; then sudo apt-get install --no-install-recommends python3-openssl python3-lxml; fi
- run: make install
- run: make lint
- if: ${{matrix.python-version == '3.12'}}
run: make lint
- run: make test
- uses: codecov/codecov-action@v3
black:
runs-on: ubuntu-22.04
steps:
- uses: psf/black@stable
- uses: actions/checkout@v4
- uses: psf/black@stable
isort:
runs-on: ubuntu-22.04
steps:
- uses: isort/isort-action@v1.1.0
- uses: actions/checkout@v4
- uses: isort/isort-action@v1.1.0

0 comments on commit e74a3f7

Please sign in to comment.