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 a6473c7 commit 332eeb8Copy full SHA for 332eeb8
.github/workflows/test_package_build.yml
@@ -17,19 +17,25 @@ jobs:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@v4
20
- with:
21
- fetch-depth: 0
+ with: {fetch-depth: 0}
+
22
- uses: actions/setup-python@v5
23
with:
24
- python-version: "3.10"
+ python-version: "3.12"
25
+ cache: "pip"
26
27
- run: pip install --upgrade build twine
28
- name: Build sdist and wheel
29
run: python -m build
30
- run: twine check dist/*
31
32
- name: Upload sdist and wheel artifacts
33
+ uses: actions/upload-artifact@v4
34
35
name: dist
36
path: dist/
37
+ if-no-files-found: error
38
39
- name: Build git archive
40
run: mkdir archive && git archive -v -o archive/archive.tgz HEAD
41
- name: Upload git archive artifact
0 commit comments