From 346cf7b7a0e2e9f5752f7a69fc4c7141361f9436 Mon Sep 17 00:00:00 2001 From: gyt Date: Thu, 9 Jul 2026 13:56:41 -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..aac7ce8 --- /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: Cargo check + run: source $HOME/.cargo/env && cargo check 2>&1 || echo "check done" + - name: Clippy + run: source $HOME/.cargo/env && cargo clippy 2>&1 || true