Skip to content

Commit 3231a7a

Browse files
committed
ci: build the package on every branch
1 parent 8641cd3 commit 3231a7a

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/build.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
push:
3+
branches:
4+
- '**'
5+
pull_request:
6+
workflow_dispatch:
7+
8+
name: Build
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v7
15+
16+
- uses: actions/setup-python@v7
17+
with:
18+
python-version: '3.14'
19+
20+
- run: python -m pip install --upgrade pip build
21+
22+
- run: python -m build
23+
24+
- run: python -m pip install dist/*.whl
25+
26+
- run: python -c "import vrchatapi; print(vrchatapi.__name__)"

0 commit comments

Comments
 (0)