mirror of
https://github.com/imjasonh/krust
synced 2026-07-08 06:45:32 +00:00
- Add detailed error logging for cargo build failures (show both stdout and stderr) - Install Docker on Windows and macOS CI runners - Remove continue-on-error from test matrix - tests should fail properly - Add detailed verification of cross-compilation setup in CI - Improve Docker availability check in tests 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
761 B
YAML
32 lines
761 B
YAML
# See https://pre-commit.com for more information
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: rustfmt
|
|
name: rustfmt
|
|
entry: cargo fmt -- --check
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
|
|
- id: clippy
|
|
name: clippy
|
|
entry: cargo clippy -- -D warnings
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
|
|
- id: cargo-check
|
|
name: cargo check
|
|
entry: cargo check
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|