From 1b3d5b7df354b8a10d316f9534439bb5fb61a794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Duarte?= Date: Mon, 18 Dec 2023 22:31:50 +0000 Subject: [PATCH] Finishing touch --- .github/workflows/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17ff54f..ca08fda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,6 @@ jobs: tests: name: Rust 1.56.0 runs-on: ubuntu-latest - strategy: - matrix: - rust: [stable] steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@1.56.0 @@ -25,15 +22,15 @@ jobs: - uses: dtolnay/rust-toolchain@1.56.0 with: components: clippy - - run: cargo clippy -- -Dclippy::all - - run: cargo clippy --tests -- -Dclippy::all - - run: cargo clippy --examples -- -Dclippy::all + - run: cargo clippy -- --no-deps -Dclippy::all + - run: cargo clippy --tests -- --no-deps -Dclippy::all + - run: cargo clippy --examples -- --no-deps -Dclippy::all rustfmt: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@1.56.0 with: components: rustfmt