-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (38 loc) · 1.06 KB
/
cmake-checks.yaml
File metadata and controls
42 lines (38 loc) · 1.06 KB
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
33
34
35
36
37
38
39
40
41
42
# Copyright (C) The DDC development team, see COPYRIGHT.md file
#
# SPDX-License-Identifier: MIT
---
name: CMake checks
# yamllint disable-line rule:truthy
on:
pull_request:
paths:
- '.github/workflows/cmake-checks.yaml'
- 'CMakeLists.txt'
- '**/CMakeLists.txt'
- '**.cmake'
- '**.cmake.in'
push:
branches:
- main
paths:
- '.github/workflows/cmake-checks.yaml'
- 'CMakeLists.txt'
- '**/CMakeLists.txt'
- '**.cmake'
- '**.cmake.in'
workflow_dispatch:
permissions:
contents: read
jobs:
cmake-format:
name: CMake format check using gersemi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install gersemi
run: pipx install gersemi~=0.25
- name: Run gersemi
run: |
gersemi --check $(git ls-files '*.cmake' '*.cmake.in' ':!cmake/DDCCheckRequiredKokkosOptions.cmake' ':!cmake/FindLAPACKE.cmake')
gersemi --check $(git ls-files 'CMakeLists.txt' '*/CMakeLists.txt')