We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build_system
1 parent 52f6d5d commit 7ccd8ceCopy full SHA for 7ccd8ce
.github/workflows/ci.yml
@@ -96,7 +96,10 @@ jobs:
96
./y.sh test --release --clean --build-sysroot ${{ matrix.commands }}
97
98
- name: Check formatting
99
- run: cargo fmt -- --check
+ run: |
100
+ cargo fmt -- --check
101
+ cd build_system
102
103
104
- name: clippy
105
run: |
build_system/src/test.rs
@@ -127,7 +127,9 @@ impl TestArg {
127
show_usage();
128
return Ok(None);
129
}
130
- x if runners.contains_key(x) && !test_arg.runners.iter().any(|runner| runner == x) => {
+ x if runners.contains_key(x)
131
+ && !test_arg.runners.iter().any(|runner| runner == x) =>
132
+ {
133
test_arg.runners.push(x.into());
134
135
arg => {
0 commit comments