Lint/formatter workflows merged per language. Resolved errors and warnings for each workflow #90

Merged
zach merged 12 commits from 89-lint-format-fixes into main 2026-05-20 07:33:57 +02:00
Showing only changes of commit 7276ee28dc - Show all commits
+4 -1
View File
@@ -8,6 +8,9 @@ jobs:
runs-on: alpine
container: node:20-alpine
env:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -53,7 +56,7 @@ jobs:
if [ -n "$(find . -name "Cargo.toml" -print -quit)" ]; then
status=0
for manifest in $(find . -name "Cargo.toml"); do
cargo clippy --manifest-path "$manifest" -- -D warnings && \
cargo clippy --manifest-path "$manifest" --all-targets --all-features -- -D warnings && \
echo "$manifest: Clippy passed" || \
{ echo "$manifest: Clippy failed"; status=1; }
done