github-actions-maintainer 0.4.2

General-purpose GitHub Actions maintenance toolkit with secure workflow pinning
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
repos:
  - repo: local
    hooks:
      - id: rustfmt
        name: rustfmt
        entry: cargo fmt --all -- --check
        language: system
        pass_filenames: false
      - id: clippy
        name: clippy
        entry: cargo clippy --all-features --all-targets -- -D warnings
        language: system
        pass_filenames: false
      - id: docs
        name: doc tests
        entry: cargo test --doc --all-features
        language: system
        pass_filenames: false