From 939e7f7e9e4a24682dca60a4ee40675a317a76ee Mon Sep 17 00:00:00 2001 From: Matthieu LAURENT Date: Sun, 11 Feb 2024 01:28:59 +0100 Subject: [PATCH] Split build and test jobs --- .github/workflows/rust.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 867c12d..c67ad98 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -16,5 +16,11 @@ jobs: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose + + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 - name: Run tests run: cargo test --verbose