From 1306a8c188d9e0628778282aa8ed4581f525e95e Mon Sep 17 00:00:00 2001 From: travisladuke Date: Tue, 8 Oct 2024 11:36:54 -0700 Subject: [PATCH] ci: create a basic github action --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 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..ffe1110 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,11 @@ +name: test suite +on: [push, pull_request] + +jobs: + test: + name: make + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: make