Skip to content

ci: build the package on every branch #1

ci: build the package on every branch

ci: build the package on every branch #1

Workflow file for this run

on:
push:
branches:
- '**'
pull_request:
workflow_dispatch:
name: Build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.14'
- run: python -m pip install --upgrade pip build
- run: python -m build
- run: python -m pip install dist/*.whl
- run: python -c "import vrchatapi; print(vrchatapi.__name__)"