Skip to content

Commit

Permalink
fix CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailed committed Sep 16, 2024
1 parent ea4eb04 commit 42a4a91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install .\[test,docs\]
- name: Run tests
run: python -m unittest discover
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install .\[test,docs\]
pip install flake8 black
- name: Lint with flake8
Expand Down

0 comments on commit 42a4a91

Please sign in to comment.