test build
Some checks failed
Rust CI / build-test (push) Failing after 33s

This commit is contained in:
2026-01-08 14:35:13 +01:00
parent d95b4a8fb5
commit b90df5bfed

View File

@@ -15,6 +15,8 @@ jobs:
- name: Install Rust (stable) - name: Install Rust (stable)
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo - name: Cache cargo
uses: actions/cache@v4 uses: actions/cache@v4
@@ -25,11 +27,6 @@ jobs:
target target
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust components
run: |
rustup component add rustfmt
rustup component add clippy
- name: Format (check) - name: Format (check)
run: cargo fmt --all -- --check run: cargo fmt --all -- --check