From 7aaeafe99eb4214c315c2f11cd0111fecc429cf2 Mon Sep 17 00:00:00 2001 From: FractalFir Date: Wed, 17 Jan 2024 23:25:36 +0100 Subject: [PATCH] Create rust.yml Created a simple GitHub action which should check that the project builds. --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 00000000..cd31d302 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,21 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose +