summaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/lintcommit.yml
blob: 1bcb2becb9a2ac92c48c399a030fed1f14f3f978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: lintcommit
on:
  pull_request:
    types: [opened, synchronize, reopened, ready_for_review]
    branches:
      - 'master'

permissions:
  contents: read

jobs:
  lint-commits:
    runs-on: ubuntu-latest
    if: github.event.pull_request.draft == false
    steps:
      - uses: actions/checkout@v6
        with:
          fetch-depth: 0
          ref: ${{ github.event.pull_request.head.sha }}
          persist-credentials: false

      - uses: ./.github/actions/setup

      - name: Build
        run: |
          cmake -S cmake.deps --preset ci
          cmake --build .deps
          cmake --preset ci
          cmake --build build

      - name: lintcommit
        run: cmake --build build --target lintcommit