From 48e0bc7adef6f9f3a8525bcbfac9bb13fcde032f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Tue, 17 Aug 2021 13:10:01 +0200 Subject: [PATCH] CI: build and test all targets --- .github/workflows/cargo-build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cargo-build-and-test.yml b/.github/workflows/cargo-build-and-test.yml index 10c86a5..4e9b66e 100644 --- a/.github/workflows/cargo-build-and-test.yml +++ b/.github/workflows/cargo-build-and-test.yml @@ -1,4 +1,4 @@ -name: CargoBuildAndTest +name: 'cargo: build and test' on: push: @@ -17,6 +17,6 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build --verbose + run: cargo build --verbose --workspace --all-targets - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --workspace --all-targets