-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (55 loc) · 1.46 KB
/
lint.yaml
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
62
63
64
65
66
67
68
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: |
~/.conan2/p
key: ${{ runner.os }}-${{ hashFiles('**/conanfile.txt') }}
- name: Prepare Build Directory
run: mkdir build
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Conan
run: pip install conan
- name: Detect Conan profile
run: conan profile detect --force
- name: Install Dependencies
run: |
conan install .. \
--output-folder=build \
--build=missing \
--settings compiler.cppstd=17 \
--settings build_type=Release \
--conf "tools.system.package_manager:mode=install" \
--conf "tools.system.package_manager:sudo=True"
working-directory: build
- name: Lint
uses: cpp-linter/cpp-linter-action@v2
id: linter
with:
style: file
ignore: build
database: build
extra-args: -std=c++17 -Wall -Wextra
- name: Fail Fast
if: steps.linter.outputs.checks-failed > 0
run: exit 1