From 9308ddd5debe88d1273112ed419333ee2e2d2cef Mon Sep 17 00:00:00 2001 From: zeapoz Date: Thu, 28 Sep 2023 13:31:25 +0200 Subject: [PATCH] ci: add missing components --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e3ba94..d2da2e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,5 +26,9 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Install nightly Rust run: rustup default nightly + - name: Install additional components + run: | + rustup component add rustfmt + rustup component add clippy - name: ${{ matrix.checks }} run: cargo ${{ matrix.checks }}