ci: unnecessary --manifest-path against resolver-tests

This commit is contained in:
Weihang Lo 2023-04-24 12:20:35 +01:00
parent a4a8bd1742
commit 9d2fbf791e
No known key found for this signature in database
GPG key ID: D7DBF189825E82E7

View file

@ -24,7 +24,6 @@ jobs:
- run: rustup update stable && rustup default stable
- run: rustup component add rustfmt
- run: cargo fmt --all --check
- run: cargo fmt --all --check --manifest-path crates/resolver-tests/Cargo.toml
# Ensure there are no clippy warnings
clippy:
@ -152,7 +151,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable
- run: cargo test --manifest-path crates/resolver-tests/Cargo.toml
- run: cargo test -p resolver-tests
test_gitoxide:
runs-on: ubuntu-latest