-
Notifications
You must be signed in to change notification settings - Fork 102
50 lines (48 loc) · 1.09 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
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Cancel previous run
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ">=1.16.0"
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: flake8
run: |
make flake8
- name: isort and yapf
run: |
make py-format
- name: cpplint
run: |
make cpplint
- name: clang-format
run: |
make clang-format
- name: buildifier
run: |
make buildifier
- name: addlicense
run: |
make addlicense
- name: mypy
run: |
make mypy
- name: docstyle
run: |
make docstyle
- name: spelling
run: |
make spelling