From 0318a08166939599520ad94320cab66c22f3c704 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Sun, 18 Aug 2024 15:49:23 -0400 Subject: [PATCH] Fix CI --- .github/workflows/rust.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8f1e0cf..9aed8af 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,20 +22,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Cache - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} - name: Format run: cargo fmt --all -- --config format_code_in_doc_comments=true --check - name: Build run: cargo build ${{ matrix.build-args }} --all - name: Clippy - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: ${{ matrix.build-args }} -- -D warnings \ No newline at end of file + run: cargo clippy ${{ matrix.build-args }} -- -D warnings \ No newline at end of file