Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
266 changes: 240 additions & 26 deletions .github/workflows/ci.yml

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions .hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,25 @@ else
echo " - pip: pip install reuse"
fi

echo "🔧 Linting GitHub Actions..."
if command -v actionlint &> /dev/null; then
actionlint
else
echo "⚠️ Warning: actionlint not installed, skipping Actions linting"
echo " Install with:"
echo " - Arch Linux: paru -S actionlint"
echo " - Go: go install github.com/rhysd/actionlint/cmd/actionlint@latest"
echo " - Homebrew: brew install actionlint"
fi

echo "🔒 Checking no_std compatibility..."
cargo check --no-default-features -q
cargo check --features std -q
cargo check --no-default-features --features tracing -q
cargo check --no-default-features --features metrics -q
cargo check --no-default-features --features colored -q
cargo check --all-features -q

echo "🔍 Running clippy (all features, all targets)..."
cargo clippy --workspace --all-targets --all-features -- -D warnings

Expand Down
Loading
Loading