-
-
Notifications
You must be signed in to change notification settings - Fork 76
66 lines (56 loc) · 1.51 KB
/
cpp.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
62
63
64
65
66
name: C++
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
jobs:
# clang-tidy:
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
#
# - name: Install dependencies
# run: |
# sudo apt-get -qq update
# sudo apt-get install -y \
# clang-14 lld-14 \
# ninja-build libboost-all-dev \
# libfmt-dev libarchive-dev libgit2-dev libspdlog-dev
#
# - name: Run CMake
# run: cmake -B build -G Ninja
#
# - name: Run clang-tidy
# run: ninja
# working-directory: build
format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Poac & clang-format
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew update
brew install poac clang-format
echo "$(brew --prefix clang-format)/bin" >> "$GITHUB_PATH"
- name: Check format
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
poac fmt --check --verbose
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Poac
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew update
brew install poac
- name: Install cpplint
run: pip install cpplint
- name: Run lint
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
poac lint --verbose