Skip to content

Commit 80484fe

Browse files
committed
fix: ci
1 parent c40bea7 commit 80484fe

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ jobs:
1919
- uses: Swatinem/rust-cache@v2
2020
- name: install native deps
2121
run: sudo apt update && sudo apt install clang llvm pkg-config nettle-dev fontforge
22-
- run: cargo install cargo-udeps --locked
22+
- run: |
23+
rustup toolchain install nightly
24+
cargo +nightly install cargo-udeps --locked
2325
2426
- run: cargo fmt -- --check
2527

2628
- run: ./download_font.sh
2729

28-
- run: cargo udeps --no-default-features --features dev
29-
- run: cargo udeps --no-default-features --features discord_client,mongo_db,plot_plotters_static
30+
- run: cargo +nightly udeps --no-default-features --features dev
31+
- run: cargo +nightly udeps --no-default-features --features discord_client,mongo_db,plot_plotters_static
3032

3133
- uses: actions-rs/clippy-check@v1
3234
with:

0 commit comments

Comments
 (0)