Skip to content

Commit

Permalink
ci: Set checking jobs to check all targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
KirilMihaylov committed Dec 12, 2024
1 parent 185a682 commit b5440dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit b5440dd

Please sign in to comment.