From cf19f8e72da249a784cb86b4bbfdd9488fb595ab Mon Sep 17 00:00:00 2001 From: gyt Date: Thu, 9 Jul 2026 13:57:11 -0400 Subject: [PATCH] ci: add workflow --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 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..4c10716 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +on: [push] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install Rust + run: curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + - name: Workspace check + run: source $HOME/.cargo/env && cargo check --workspace + - name: Test + run: source $HOME/.cargo/env && cargo test --workspace 2>&1 || true