Skip to content

Commit 70ae3b9

Browse files
ci(github): add workflow build.yml
1 parent b8c2dde commit 70ae3b9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)