File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ concurrency:
18
18
19
19
jobs :
20
20
build :
21
- name : Build source distribution
21
+ name : Build distributions
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- uses : actions/checkout@v4
@@ -27,16 +27,22 @@ jobs:
27
27
- uses : actions/setup-python@v5
28
28
with :
29
29
python-version : " 3.10"
30
- - name : Build the sdist
30
+ - name : Build distributions
31
31
run : |
32
32
pip install build
33
- python -m build --sdist
33
+ python -m build
34
34
- name : Check the sdist installs and imports
35
35
run : |
36
36
mkdir -p test-sdist
37
37
cd test-sdist
38
38
python -m venv venv-sdist
39
39
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
40
46
- uses : actions/upload-artifact@v4
41
47
with :
42
48
name : artifact
You can’t perform that action at this time.
0 commit comments