From 6288907f74238236186459f7f09f425f2a3e29b1 Mon Sep 17 00:00:00 2001 From: JK Gunnink <8016590+jgunnink@users.noreply.github.com> Date: Sun, 19 May 2024 01:09:51 +0800 Subject: [PATCH] run a cargo check on builds --- .github/workflows/status-checks.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/status-checks.yml diff --git a/.github/workflows/status-checks.yml b/.github/workflows/status-checks.yml new file mode 100644 index 0000000..78f9094 --- /dev/null +++ b/.github/workflows/status-checks.yml @@ -0,0 +1,14 @@ +name: Status Checks +on: + pull_request: + branches: + - main + +jobs: + check: + name: cargo check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: cargo check