Skip to content

Commit b8db726

Browse files
committed
Add missing github action section
1 parent 3c65556 commit b8db726

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,19 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8-
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+
with:
23+
path: dist/*

0 commit comments

Comments
 (0)