Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw444 committed Feb 2, 2024
1 parent 6a59833 commit 597e993
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11']
include:
- python-version: '3.10'
toxenv: py310
- python-version: '3.11'
toxenv: py311
- python-version: '3.12'
toxenv: py312

steps:
- uses: actions/checkout@v2
Expand All @@ -68,14 +66,14 @@ jobs:
env:
TOXENV: ${{ matrix.toxenv }}
- uses: codecov/codecov-action@v2
if: ${{ matrix.python-version == '3.12' }}
if: ${{ matrix.python-version == '3.11' }}
- name: "Build Package 📦"
run: |
git describe --tags --exact-match > VERSION || true
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v2
# Only publish artifacts from Python latest build.
if: ${{ matrix.python-version == '3.12' }}
if: ${{ matrix.python-version == '3.11' }}
with:
name: dist
path: dist/
Expand Down

0 comments on commit 597e993

Please sign in to comment.