Skip to content

Commit

Permalink
fix: update workflow python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
circuitsacul committed Oct 11, 2024
1 parent c28c0ca commit 5b325d0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' ]
os: [ ubuntu, windows ]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu, windows]

name: ${{ matrix.python-version }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: pip install nox
- name: Run Nox
run: nox
- name: Upload to CodeCov
uses: codecov/codecov-action@v2
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: pip install nox
- name: Run Nox
run: nox
- name: Upload to CodeCov
uses: codecov/codecov-action@v2
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: "3.9"
- name: Install Dependencies
run: pip install poetry
- name: Build & Upload
Expand Down

0 comments on commit 5b325d0

Please sign in to comment.