From 03f07994639ddabbed66c39f39a3bd2420c0e601 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 25 Sep 2025 13:25:10 +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 23a9387..57dab2e 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