From 6b929834b7ec187350952d9175589754fdfe9db7 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 08:42:46 -0500 Subject: [PATCH] Split Rust test into separate job --- .forgejo/workflows/build.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index dbde7c8..67af278 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -57,5 +57,14 @@ jobs: run: | source venv/bin/activate pytest tests/*.py + + rust-test: + name: Rust test + runs-on: ubuntu-22.04 + steps: + - name: Checkout the code + uses: actions/checkout@v4 + - name: Set up Rust + uses: https://github.com/dtolnay/rust-toolchain@stable - name: Run Rust tests run: cargo test