File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -18,30 +18,26 @@ jobs:
18
18
- uses : actions/checkout@v4
19
19
- uses : dtolnay/rust-toolchain@master
20
20
with :
21
- toolchain : stable
22
- - uses : cargo-bins/cargo-binstall@main
21
+ toolchain : nightly
23
22
- uses : Swatinem/rust-cache@v2
24
23
with :
25
24
key : ${{ matrix.mode }}
26
25
- name : install native deps
27
26
run : sudo apt update && sudo apt install clang llvm pkg-config nettle-dev fontforge
28
27
29
- - run : |
30
- rustup toolchain install nightly
31
- cargo +nightly binstall cargo-udeps
28
+ - run : cargo install cargo-udeps --locked
32
29
33
30
- run : cargo fmt -- --check
34
31
35
32
- run : ./download_font.sh
36
33
37
- - run : cargo +nightly udeps --no-default-features --features ${{ matrix.mode }}
34
+ - run : cargo udeps --no-default-features --features ${{ matrix.mode }}
38
35
39
36
- uses : actions-rs/clippy-check@v1
40
37
with :
41
- toolchain : nightly
42
38
name : ${{ matrix.mode }} clippy
43
39
token : ${{ secrets.GITHUB_TOKEN }}
44
40
args : --no-default-features --features ${{ matrix.mode }}
45
41
46
42
- name : test
47
- run : cargo +nightly test --no-default-features --features ${{ matrix.mode }}
43
+ run : cargo test --no-default-features --features ${{ matrix.mode }}
You can’t perform that action at this time.
0 commit comments