From 32e1d059ba9197638d4eafc21b3858d6bd98c09d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 7 Oct 2025 16:59:04 +0200 Subject: [PATCH] try again --- .github/workflows/ci.yml | 2 ++ justfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f31865..900e867 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,8 @@ jobs: - uses: actions/checkout@v4 - uses: extractions/setup-just@v3 - uses: dtolnay/rust-toolchain@nightly + with: + components: rust-src - run: just docs-zynq clippy: diff --git a/justfile b/justfile index 218abe8..f6fd08f 100644 --- a/justfile +++ b/justfile @@ -19,7 +19,7 @@ clean target: cd {{target}} && cargo clean fmt target: - cd {{target}} && cargo fmt --all -- --check + cd {{target}} && cargo +stable fmt --all -- --check clippy target: cd {{target}} && cargo clippy -- -D warnings