From 3e72af09c15c382679c04a579be11dc9ab40e6d8 Mon Sep 17 00:00:00 2001 From: wznmickey Date: Mon, 22 Apr 2024 17:40:49 +0800 Subject: [PATCH] Create rustTest.yml --- .github/workflows/rustTest.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rustTest.yml diff --git a/.github/workflows/rustTest.yml b/.github/workflows/rustTest.yml new file mode 100644 index 0000000..d54fa2f --- /dev/null +++ b/.github/workflows/rustTest.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose