Skip to content

Commit

Permalink
Enable CI on 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 10, 2023
1 parent 3789051 commit d7214f7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
strategy:
max-parallel: 8
matrix:
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
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v4
with:
Expand All @@ -28,7 +28,7 @@ jobs:
make install
echo 'import coverage; coverage.process_startup()' > sitecustomize.py
- name: Lint
if: ${{matrix.python-version == '3.11'}}
if: ${{matrix.python-version == '3.12'}}
run: make lint
- name: Stagger tests to avoid throttling errors
run: python3 -c 'import sys, time, hashlib; time.sleep(int.from_bytes(hashlib.md5(sys.version.encode()).digest(), sys.byteorder) % 16)'
Expand All @@ -40,4 +40,5 @@ jobs:
isort:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: isort/[email protected]

0 comments on commit d7214f7

Please sign in to comment.