We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0ed0b commit c70eb28Copy full SHA for c70eb28
.github/workflows/build-and-test-rust.yml
@@ -55,15 +55,15 @@ jobs:
55
cd aggregation_mode
56
cargo fmt --all -- --check
57
58
- - name: Run Clippy on AggregationMode
+ - name: Build AggregationMode # We build before clippy to generate the ELF
59
run: |
60
61
- cargo clippy --all -- -D warnings
+ cargo build --all
62
63
- - name: Build AggregationMode
+ - name: Run Clippy on AggregationMode
64
65
66
- cargo build --all
+ cargo clippy --all -- -D warnings
67
68
test:
69
runs-on: aligned-runner
0 commit comments