From f5717d98cd1e08c7428b3805b66f245bcfa9027d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 26 Sep 2025 15:10:27 +0200 Subject: [PATCH] try to fix CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 174228b..c0fec36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable + with: + components: rustfmt - run: cargo fmt --all -- --check docs: @@ -69,4 +71,6 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable + with: + components: clippy - run: cargo clippy -- -D warnings