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 b8c2dde commit 70ae3b9Copy full SHA for 70ae3b9
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: build
2
+on: [push, pull_request]
3
+
4
+permissions:
5
+ contents: read
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
14
+ - name: Use Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ cache: pip
18
+ python-version: 3
19
20
+ - name: Install dependencies
21
+ run: pip install -e .[build]
22
23
+ - name: Generate packages
24
+ run: python3 -m build
0 commit comments