From d74613aa9374fc28a3e3b391a36f95a18f6b5ee3 Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Sun, 9 Nov 2025 21:16:54 +0200 Subject: [PATCH] added gitea cargo test workflow --- .gitea/workflows/cargo-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/cargo-test.yml diff --git a/.gitea/workflows/cargo-test.yml b/.gitea/workflows/cargo-test.yml new file mode 100644 index 0000000..a867f45 --- /dev/null +++ b/.gitea/workflows/cargo-test.yml @@ -0,0 +1,23 @@ +name: Test + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + + env: + CARGO_TERM_COLOR: always + + jobs: + build: + name: Cargo test + runs-on: ubuntu-latest + + steps: + - name: Build + uses: actions/checkout@v4 + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose