File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed
Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change 2020 runs-on : ${{ matrix.target.os }}
2121 steps :
2222 - uses : actions/checkout@v3
23+ - name : Stable with rustfmt and clippy
24+ uses : actions-rs/toolchain@v1
25+ with :
26+ profile : minimal
27+ toolchain : 1.63.0
28+ components : rustfmt, clippy
29+ override : true
2330 - uses : actions/cache@v3
2431 with :
2532 path : |
3340 restore-keys : ${{ runner.OS }}-cargo-
3441 - name : Build ${{ matrix.target.os }}
3542 run : |
36- rustup check
37- case "$OSTYPE" in
38- msys)
39- echo "Windows doesn't like it when rustup updates itself"
40- rustup update --no-self-update stable
41- ;;
42- *)
43- echo "Linux and macOS don't need manual suppression of rustup self update"
44- rustup update stable
45- ;;
46- esac
47- rustup check
48- rustup component add rustfmt
49- rustup component add clippy
5043 ./ci/all.sh
5144 ./ci/multinode_integration_test.sh
5245 ./ci/collect_results.sh
You can’t perform that action at this time.
0 commit comments