From fd06fcb2db28a5a2933bdc8e403dfef10407334f Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 19:10:08 +0000 Subject: [PATCH] Add CI workflow for running tests on push and PR - Created `.github/workflows/ci.yml` - Triggers on `push` and `pull_request` - Uses `ubuntu-latest` runner - Installs `stable` Rust toolchain - Runs `cargo test --workspace -- --nocapture` --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..be35eee --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + pull_request: + +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Run Tests + run: cargo test --workspace -- --nocapture