CI: Test/check/lint all targets in all workspaces

This commit is contained in:
Marijn Suijten 2020-09-01 20:18:38 +02:00 committed by Benjamin Saunders
parent 2ae160cfc4
commit 8a46286005

View file

@ -16,6 +16,7 @@ jobs:
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: check command: check
args: --workspace --all-targets
test: test:
name: Test Suite name: Test Suite
@ -30,6 +31,7 @@ jobs:
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --workspace --all-targets
fmt: fmt:
name: Rustfmt name: Rustfmt
@ -61,4 +63,4 @@ jobs:
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: clippy command: clippy
args: -- -D warnings args: --workspace --all-targets -- -D warnings