From 9c125f28f3a0ee28b6721090a679bcf2d7abdf3b Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 22 Nov 2019 17:46:31 +1100 Subject: [PATCH] Modify rust.yaml --- .github/workflows/rust.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6542f452e3..db650148c6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,15 +1,19 @@ -name: Rust +name: Test Suite on: [push] jobs: - build: - + release-tests: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v1 - name: Run release tests with all features run: cargo test --release --all --all-features + debug-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Run debug tests with all features + run: cargo test --all --all-features - name: Check formatting with cargo fmt - run: cargo test --release --all --all-features + run: cargo test --all --all-features