Skip to content

Commit 48cc456

Browse files
dimblebybrandonwillard
authored andcommitted
publish wheel
1 parent 963e08d commit 48cc456

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/pypi.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818

1919
jobs:
2020
build:
21-
name: Build source distribution
21+
name: Build distributions
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v4
@@ -27,16 +27,22 @@ jobs:
2727
- uses: actions/setup-python@v5
2828
with:
2929
python-version: "3.10"
30-
- name: Build the sdist
30+
- name: Build distributions
3131
run: |
3232
pip install build
33-
python -m build --sdist
33+
python -m build
3434
- name: Check the sdist installs and imports
3535
run: |
3636
mkdir -p test-sdist
3737
cd test-sdist
3838
python -m venv venv-sdist
3939
venv-sdist/bin/python -m pip install ../dist/minikanren-*.tar.gz
40+
- name: Check the wheel installs and imports
41+
run: |
42+
mkdir -p test-wheel
43+
cd test-wheel
44+
python -m venv venv-wheel
45+
venv-wheel/bin/python -m pip install ../dist/minikanren-*.whl
4046
- uses: actions/upload-artifact@v4
4147
with:
4248
name: artifact

0 commit comments

Comments
 (0)