From 1e65ddeea88d09ef78a522d4db9d990285abe7f6 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 27 Mar 2026 00:50:03 -0700 Subject: [PATCH] Feat: run tests on push and PR Co-authored-by: gpt-5.3-codex --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..cd6884c --- /dev/null +++ b/.github/workflows/test.yml @@ -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