-
Notifications
You must be signed in to change notification settings - Fork 320
71 lines (61 loc) · 1.84 KB
/
style.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
67
68
69
70
71
# This is a basic workflow to help you get started with Actions
name: style
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- main
tags:
- v*
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# TODO: tweak HybridSE source & rm '-build/header_guard' filter
- uses: reviewdog/action-cpplint@master
with:
github_token: ${{ secrets.github_token }}
level: info
reporter: github-pr-review
flags: --linelength=120
detect-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: detect-secrets
uses: reviewdog/action-detect-secrets@master
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
filter_mode: diff_context
fail_on_error: true
exclude: "./.git/*" # Optional.
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
# FIXME: fix the pylint errors in project and rm continue-on-error flag
continue-on-error: true
run: |
make pylint