Skip to content

Test

Test #2

Workflow file for this run

---
name: Test
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build_wheels:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install
run: |
script/setup --dev
- name: Run tests
run: script/test