From e0b9b1d1acf0c625160e74c09e97b369349060bb Mon Sep 17 00:00:00 2001 From: Jonathan Cubides Date: Fri, 16 Jun 2023 14:22:18 +0200 Subject: [PATCH] Force codebase to use clippy --- .github/workflows/test-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 4abc467..c11f6e7 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -56,7 +56,7 @@ jobs: - name: Lint run: | cargo fmt --all -- --check - cargo clippy || true + cargo clippy # uncomment this once there tests to run # - name: Run tests @@ -95,7 +95,7 @@ jobs: - name: Lint run: | cargo fmt --all -- --check - cargo clippy || true + cargo clippy # uncomment this once there tests to run # - name: Run tests @@ -103,4 +103,4 @@ jobs: - name: release if: success() - run: cargo build --release --target=${{ matrix.target }} \ No newline at end of file + run: cargo build --release --target=${{ matrix.target }}