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:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v3
18
- - uses : dtolnay/rust-toolchain@nightly
19
- with :
20
- components : rustfmt
21
18
- run : cargo fmt --all -- --check
22
19
23
20
clippy :
24
21
runs-on : ubuntu-latest
25
22
steps :
26
23
- uses : actions/checkout@v3
27
- - uses : dtolnay/rust-toolchain@nightly
28
- with :
29
- components : clippy
30
24
- run : cargo clippy --all-targets --all-features -- -D warnings
31
25
32
26
audit :
72
66
sanitizer : [address, leak, memory, thread]
73
67
steps :
74
68
- uses : actions/checkout@v3
75
- - uses : dtolnay/rust-toolchain@nightly
76
- with :
77
- components : rust-src
78
69
- 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
79
70
env :
80
71
CC : " clang"
@@ -113,10 +104,6 @@ jobs:
113
104
target : x86_64-apple-darwin
114
105
steps :
115
106
- uses : actions/checkout@v3
116
- - uses : dtolnay/rust-toolchain@nightly
117
- with :
118
- components : rust-src
119
- targets : ${{ matrix.target }}
120
107
- run : sudo apt install -y musl-tools
121
108
if : runner.os == 'Linux'
122
109
- run : cargo install --force cargo-make
Original file line number Diff line number Diff line change 1
1
[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