Skip to content

Commit

Permalink
ci: Add wheel build
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrosenthal committed Feb 13, 2024
1 parent ecae7ff commit 83ae6c3
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Run Tests"
name: "CI"
on:
- push
- pull_request
Expand Down Expand Up @@ -76,3 +76,20 @@ jobs:
run: pip install isort
- name: "Check source code is formatted with isort"
run: isort --check .
build-dist:
name: "Build Wheel"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: "Install build dependencies"
run: pip install --upgrade wheel setuptools
- name: "Build"
run: python -m build
- name: "Upload Artifacts"
uses: actions/upload-artifact@v4
with:
name: dist
path: dist

0 comments on commit 83ae6c3

Please sign in to comment.