CI: Remove unnecessary --all flag

We aren't in a workspace here.
This commit is contained in:
Jack Grigg 2021-03-03 22:49:52 +00:00
parent c713e804fa
commit a46c4d8a0a

View file

@ -22,7 +22,7 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --verbose --release --all --all-features args: --verbose --release --all-features
build: build:
name: Build target ${{ matrix.target }} name: Build target ${{ matrix.target }}
@ -62,7 +62,7 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --all --benches --all-features args: --benches --all-features
book: book:
name: Book tests name: Book tests
@ -171,7 +171,7 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: doc command: doc
args: --all --document-private-items args: --document-private-items
fmt: fmt:
name: Rustfmt name: Rustfmt
@ -187,4 +187,4 @@ jobs:
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: fmt command: fmt
args: --all -- --check args: -- --check