ci: use --workspace instead of deprecated --all flag

This commit is contained in:
link2xt
2023-02-12 16:38:09 +00:00
parent ef44aa0bd0
commit 82da09760c

View File

@@ -79,10 +79,10 @@ jobs:
uses: swatinem/rust-cache@v2
- name: Check
run: cargo check --all --bins --examples --tests --benches
run: cargo check --workspace --bins --examples --tests --benches
- name: Tests
run: cargo test --all
run: cargo test --workspace
- name: Test cargo vendor
run: cargo vendor