Feat: run tests on push and PR

Co-authored-by: gpt-5.3-codex <no-reply@openai.com>
This commit is contained in:
2026-03-27 00:50:03 -07:00
parent fa5cb2c42b
commit 1e65ddeea8

23
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- name: Install stable Rust
run: |
rustup toolchain install stable --profile minimal
rustup default stable
- name: Run tests
run: cargo test --all-targets --verbose