Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,33 @@ jobs:
- name: Run tests
run: pytest -q

build-wheel:
needs: test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.14'
Comment on lines +44 to +46

- name: Build wheel and sdist
run: |
python -m pip install --upgrade pip build
python -m build

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: aspython-dist
path: dist/

- name: Attach to GitHub release
uses: softprops/action-gh-release@v2
with:
files: dist/*
Comment on lines +59 to +62

build-exe:
needs: test
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -43,7 +70,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.14'
Comment on lines 71 to +73

- name: Install package + dev extras
run: |
Expand Down
Loading