aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lintcommit.yml
blob: 3d140532cd1835b3f499a4687ffbed1a893b5dc8 (plain) (blame)
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
name: "lintcommit"
on:
  pull_request:
    types: [opened, synchronize, reopened, ready_for_review]
    branches:
      - 'master'
jobs:
  lint-commits:
    runs-on: ubuntu-latest
    if: github.event.pull_request.draft == false
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
          ref: ${{ github.event.pull_request.head.sha }}

      - 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