From e08aa4b61f45085849f1bf26fcd5f46e0135719a Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 22 Nov 2019 17:56:20 +1100 Subject: [PATCH] Modify gitlab actions --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index db650148c6..964b65da0f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,12 +8,12 @@ jobs: steps: - uses: actions/checkout@v1 - name: Run release tests with all features - run: cargo test --release --all --all-features + run: cargo test --release --all --all-features --exclude ef_tests debug-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Run debug tests with all features - run: cargo test --all --all-features + run: cargo test --all --all-features --exclude ef_tests - name: Check formatting with cargo fmt - run: cargo test --all --all-features + run: cargo fmt --all -- check