File tree Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,12 @@ jobs:
1515 runs-on : ubuntu-latest
1616 steps :
1717 - uses : actions/checkout@v3
18- - uses : dtolnay/rust-toolchain@nightly
19- with :
20- components : rustfmt
2118 - run : cargo fmt --all -- --check
2219
2320 clippy :
2421 runs-on : ubuntu-latest
2522 steps :
2623 - uses : actions/checkout@v3
27- - uses : dtolnay/rust-toolchain@nightly
28- with :
29- components : clippy
3024 - run : cargo clippy --all-targets --all-features -- -D warnings
3125
3226 audit :
7266 sanitizer : [address, leak, memory, thread]
7367 steps :
7468 - uses : actions/checkout@v3
75- - uses : dtolnay/rust-toolchain@nightly
76- with :
77- components : rust-src
7869 - run : cargo test --tests --all-features --workspace --target x86_64-unknown-linux-gnu -Zbuild-std -Zunstable-options --config='build.rustflags = ["-Zsanitizer=${{ matrix.sanitizer }}"]' -- --test-threads=1
7970 env :
8071 CC : " clang"
@@ -113,10 +104,6 @@ jobs:
113104 target : x86_64-apple-darwin
114105 steps :
115106 - uses : actions/checkout@v3
116- - uses : dtolnay/rust-toolchain@nightly
117- with :
118- components : rust-src
119- targets : ${{ matrix.target }}
120107 - run : sudo apt install -y musl-tools
121108 if : runner.os == 'Linux'
122109 - run : cargo install --force cargo-make
Original file line number Diff line number Diff line change 11[toolchain ]
2- channel = " nightly"
2+ channel = " nightly-2024-06-21"
3+ components = [" rust-src" ]
You can’t perform that action at this time.
0 commit comments