Install rustfmt and clippy where necessary (#1171)

This commit is contained in:
Gideon
2025-06-16 04:04:06 +02:00
committed by GitHub
parent ef0a0d69bb
commit 3db95a3e67

View File

@@ -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' }}