From f38fae174e55135822d9db8126b0fb56e6963897 Mon Sep 17 00:00:00 2001 From: Alex Whitney Date: Fri, 8 Nov 2024 10:24:30 +0000 Subject: [PATCH] add CI --- .github/workflows/ci.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..c22cb35 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,18 @@ +on: [push, pull_request] + +name: CI + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install toolchain + uses: dtolnay/rust-toolchain@1.66.0 + + - name: Test + run: cargo test --workspace