File tree 3 files changed +8
-55
lines changed
3 files changed +8
-55
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - uses : actions/checkout@v1
14
+ - uses : actions/checkout@v4
15
15
16
- - name : Install latest stable toolchain
17
- uses : actions-rs/toolchain@v1
18
- with :
19
- toolchain : stable
20
- override : true
21
-
22
- - name : Install clippy
23
- run : rustup component add clippy
24
-
25
- - name : Run clippy
26
- uses : actions-rs/clippy-check@v1
27
- with :
28
- token : ${{ secrets.GITHUB_TOKEN }}
29
- args : --all-targets -- --deny warnings
16
+ - run : rustup update
17
+ - run : rustup component add clippy
18
+ - run : cargo clippy --all-targets -- --deny warnings
Original file line number Diff line number Diff line change 16
16
os : [ubuntu-latest, macos-latest, windows-latest]
17
17
18
18
steps :
19
- - uses : actions/checkout@v1
20
-
21
- - name : Install latest stable toolchain
22
- uses : actions-rs/toolchain@v1
23
- with :
24
- toolchain : stable
25
- override : true
26
-
27
- - name : " Build"
28
- uses : actions-rs/cargo@v1
29
- with :
30
- command : build
31
- args : --release
32
-
33
- - name : " Test"
34
- uses : actions-rs/cargo@v1
35
- with :
36
- command : test
37
- args : --release
19
+ - uses : actions/checkout@v4
20
+ - run : rustup update
21
+ - run : cargo build --release
22
+ - run : cargo test --release
You can’t perform that action at this time.
0 commit comments