Skip to content

Commit f53b2f3

Browse files
authored
Merge pull request #54 from SaschaOnTour/fix/speculative-decoding
fix: same quality gate in both pipelines
2 parents 445a240 + d35c734 commit f53b2f3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ jobs:
6767
run: cargo install rustqual
6868

6969
- name: Quality analysis
70-
run: rustqual src/ --fail-on-warnings
70+
# Scan the whole repository (src/, tests/, benches/, examples/) —
71+
# scanning only src/ produces false-positive TQ_UNTESTED and
72+
# DEAD_CODE/testonly findings because rustqual can't see the
73+
# integration-test callers under tests/.
74+
run: rustqual . --fail-on-warnings
7175

7276
- name: Publish
7377
run: cargo publish

0 commit comments

Comments
 (0)