Skip to content

Commit 734ea35

Browse files
ci(github): add workflow build.yml
1 parent c330293 commit 734ea35

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
on: push
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@v6
13+
14+
- name: Install uv
15+
uses: astral-sh/setup-uv@v7
16+
17+
- name: Install dependencies
18+
run: uv sync
19+
20+
- name: Build package
21+
run: uv build

0 commit comments

Comments
 (0)