-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (38 loc) · 894 Bytes
/
qa.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
---
name: "QA"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DEBIAN_FRONTEND: noninteractive
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-shellcheck@v1
with:
check_all_files_with_shebangs: "true"
- name: configure
run: |
sudo apt-get -qq install -y libgdbm-dev libpam-dev
autoreconf -fi
./configure
- uses: h0tw1r3/cpp-linter-action@python-cache
id: cpplinter
with:
version: '14'
style: 'file'
tidy-checks: ''
tidy-review: true
format-review: true
thread-comments: false
cache: true