From 6467b16e7e96597c61a80da61fec98e54b86b592 Mon Sep 17 00:00:00 2001 From: Quantum Date: Mon, 14 Oct 2024 00:26:22 -0400 Subject: [PATCH] Add basic `cargo build` CI script --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f751d68 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: Cargo build +on: [push, pull_request] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose