We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a66709 commit ab7d465Copy full SHA for ab7d465
.github/workflows/build-and-test.yaml
@@ -32,18 +32,18 @@ jobs:
32
runs-on: ubuntu-latest
33
steps:
34
- uses: actions/checkout@v4
35
- - run: |
36
- make preprocess
37
- pipx run build --sdist
38
- - uses: actions/upload-artifact@v3 # https://github.com/actions/upload-artifact/issues/478
39
- with:
40
- path: ./dist/*.tar.gz
41
- overwrite: true
42
- uses: actions/setup-python@v5
43
with:
44
python-version: '3.10'
45
- run: |
+ make preprocess
+ pip install build
+ python -m build --sdist
46
pip install ./dist/*.tar.gz
+ - uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact/issues/478
+ with:
+ path: ./dist/*.tar.gz
+ overwrite: true
47
48
bdist:
49
name: Build bdist wheels and test
0 commit comments