-
Notifications
You must be signed in to change notification settings - Fork 5
61 lines (53 loc) · 1.46 KB
/
lint.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: "Lint"
on:
pull_request:
paths:
- ".github/workflows/*.yml"
- ".gitmodules"
- "CMakeLists.txt"
- "clp_ffi_py/**"
- "pyproject.toml"
- "requirements-dev.txt"
- "src/**"
- "Taskfile.yml"
- "tests/**"
push:
paths:
- ".github/workflows/*.yml"
- ".gitmodules"
- "CMakeLists.txt"
- "clp_ffi_py/**"
- "pyproject.toml"
- "requirements-dev.txt"
- "src/**"
- "Taskfile.yml"
- "tests/**"
schedule:
# Run every Tuesday at 00:15 UTC (the 15 is to avoid periods of high load)
- cron: "15 0 * * 2"
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
lint-check:
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
runs-on: "${{matrix.os}}"
steps:
- uses: "actions/checkout@v4"
with:
submodules: "recursive"
- uses: "actions/setup-python@v5"
with:
# NOTE: We resolve some of clang-tidy's IWYU violations using CPython 3.10's headers, so
# we need to use the same version of Python when running clang-tidy.
python-version: "3.10"
- run: |
pip install --upgrade pip
- run: "npm install -g @go-task/cli"
- if: "matrix.os == 'macos-latest'"
name: "Install coreutils (for md5sum)"
run: "brew install coreutils"
- run: "task lint:check"