File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 24
24
- run : rustup update stable && rustup default stable
25
25
- run : rustup component add rustfmt
26
26
- run : cargo fmt --all --check
27
- - run : cargo fmt --all --check --manifest-path crates/resolver-tests/Cargo.toml
28
27
29
28
# Ensure there are no clippy warnings
30
29
clippy :
@@ -152,7 +151,7 @@ jobs:
152
151
steps :
153
152
- uses : actions/checkout@v3
154
153
- run : rustup update stable && rustup default stable
155
- - run : cargo test --manifest-path crates/ resolver-tests/Cargo.toml
154
+ - run : cargo test -p resolver-tests
156
155
157
156
test_gitoxide :
158
157
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ OPTIONS="--url https://doc.rust-lang.org/cargo/commands/ \
18
18
--man rustc:1=https://doc.rust-lang.org/rustc/index.html \
19
19
--man rustdoc:1=https://doc.rust-lang.org/rustdoc/index.html"
20
20
21
- cargo run --manifest-path=../../crates/ mdman/Cargo.toml -- \
21
+ cargo run -p mdman -- \
22
22
-t md -o src/commands man/cargo* .md \
23
23
$OPTIONS
24
24
25
- cargo run --manifest-path=../../crates/ mdman/Cargo.toml -- \
25
+ cargo run -p mdman -- \
26
26
-t txt -o man/generated_txt man/cargo* .md \
27
27
$OPTIONS
28
28
29
- cargo run --manifest-path=../../crates/ mdman/Cargo.toml -- \
29
+ cargo run -p mdman -- \
30
30
-t man -o ../etc/man man/cargo* .md \
31
31
$OPTIONS
You can’t perform that action at this time.
0 commit comments