diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index caef3644..6cd1393e 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -35,6 +35,8 @@ jobs: apt-get update && apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_22.x | bash - apt-get install -y nodejs + - name: Install Rust components + run: rustup component add rustfmt - name: Install dependencies run: npm install --legacy-peer-deps - name: Update version from Git @@ -65,6 +67,8 @@ jobs: echo "Fetched fallback ref: master" fi git checkout FETCH_HEAD + - name: Install clippy + run: rustup component add clippy - run: cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings rust-tests: