From 06221892b7bb7da4090b695be8777bb533f4c8eb Mon Sep 17 00:00:00 2001 From: raf Date: Wed, 13 Aug 2025 14:24:54 +0000 Subject: [PATCH] ci: build with cargo --- .github/workflows/rust.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 0000000..ce827a1 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,18 @@ +name: Build with Cargo + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose