From b5440dd977ca10502b02e536e0ca4c64ca06d51e Mon Sep 17 00:00:00 2001 From: Kiril Mihaylov <80464733+KirilMihaylov@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:42:52 +0200 Subject: [PATCH] ci: Set checking jobs to check all targets. --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7725537..6632da7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -59,7 +59,7 @@ jobs: update_and_cache_toolchains: "true" - name: "Run clippy" run: |- - "cargo" "clippy" --workspace -- -D "warnings" + "cargo" "clippy" --all-targets test_encoding_compatibility: runs-on: "ubuntu-latest" steps: @@ -69,7 +69,7 @@ jobs: update_and_cache_toolchains: "true" - name: "Run encoding compatibility tests" run: |- - "cargo" "test" --workspace + "cargo" "test" --all-targets working-directory: "./test-encoding-compatibility" code_coverage: runs-on: "ubuntu-latest" @@ -90,7 +90,7 @@ jobs: update_and_cache_toolchains: "true" - name: "Run tests in release profile" run: |- - "cargo" "test" --workspace --release + "cargo" "test" --all-targets --release build: runs-on: "ubuntu-latest" needs: