We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c65556 commit b8db726Copy full SHA for b8db726
1 file changed
.github/workflows/build.yml
@@ -5,4 +5,19 @@ on:
5
branches: [ main ]
6
pull_request:
7
8
-
+
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: 3.12
17
+ - name: Install build
18
+ run: pip install build
19
+ - name: Build wheel and sdist
20
+ run: python -m build --sdist --wheel
21
+ - uses: actions/upload-artifact@v2
22
23
+ path: dist/*
0 commit comments