From 3db95a3e67488fe10967b10ab2c0ecc225fbb22d Mon Sep 17 00:00:00 2001 From: Gideon <87426140+GideonBear@users.noreply.github.com> Date: Mon, 16 Jun 2025 04:04:06 +0200 Subject: [PATCH] Install rustfmt and clippy where necessary (#1171) --- .github/workflows/create_release_assets.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/create_release_assets.yml b/.github/workflows/create_release_assets.yml index 2b457308..ac3702fa 100644 --- a/.github/workflows/create_release_assets.yml +++ b/.github/workflows/create_release_assets.yml @@ -15,6 +15,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install needed components + run: | + rustup component add rustfmt + rustup component add clippy + - name: Install cargo-deb run: cargo install cargo-deb if: ${{ startsWith(matrix.platform, 'ubuntu-') }} @@ -101,6 +106,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install needed components + run: | + rustup component add rustfmt + rustup component add clippy + - name: Install cargo-deb cross compilation dependencies run: sudo apt-get install libc6-arm64-cross libgcc-s1-arm64-cross if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}