From ccfc1cda576c9cb8ce98d1cbc02f337a82125d1c Mon Sep 17 00:00:00 2001 From: optout <13562139+optout21@users.noreply.github.com> Date: Wed, 14 May 2025 21:58:15 +0200 Subject: [PATCH] Add CI --- .github/workflows/build_test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build_test.yml diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml new file mode 100644 index 0000000..386be9f --- /dev/null +++ b/.github/workflows/build_test.yml @@ -0,0 +1,22 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Set up Rust + run: rustup override set 1.85 + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose