• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Not run as part of pre-commit checks because they don't handle sending the correct commit
2# range to `committed`
3name: Lint Commits
4on: [pull_request]
5
6permissions:
7  contents: read
8
9env:
10  RUST_BACKTRACE: 1
11  CARGO_TERM_COLOR: always
12  CLICOLOR: 1
13
14jobs:
15  committed:
16    name: Lint Commits
17    runs-on: ubuntu-latest
18    steps:
19    - name: Checkout Actions Repository
20      uses: actions/checkout@v4
21      with:
22        fetch-depth: 0
23    - name: Lint Commits
24      uses: crate-ci/committed@master
25