-
Notifications
You must be signed in to change notification settings - Fork 27
123 lines (106 loc) · 3.51 KB
/
linters.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# SPDX-FileCopyrightText: 2017 Fermi Research Alliance, LLC
# SPDX-License-Identifier: Apache-2.0
---
name: Linters
on:
push:
branches:
- "**" # matches every branch
- "!gh-pages" # excludes gh-pages branch
pull_request:
branches:
- master
- 1.7
jobs:
run_flake8:
name: Run flake8 against code tree
runs-on: ubuntu-latest
steps:
- name: checkout code tree
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding file
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-3.9
restore-keys: |
${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-
${{ runner.os }}-pip-
- name: Note Python version/implementation
run: |
which python3
python3 -c 'import sys; print(sys.version)'
python3 -c 'import platform; print(platform.python_implementation())'
python3 -m pip cache dir
- name: Ensure pip/setuptools is up to date
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel setuptools
- name: Install dependencies
run: |
python3 -m pip install --upgrade pytest
python3 -m pip install -e . --user
python3 -m pip install -e .[develop] --user
- name: Ensure version.py exists
run: python3 setup.py bdist_wheel
- name: Run Flake8 Tests against the code tree
env:
PYTHONPATH: ${{ github.workspace }}/src
run: |
python3 -m flake8
run_pylint:
name: Run pylint against code tree
runs-on: ubuntu-latest
steps:
- name: checkout code tree
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Cache pip
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding file
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-3.9
restore-keys: |
${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-
${{ runner.os }}-pip-
- name: Note Python version/implementation
run: |
which python3
python3 -c 'import sys; print(sys.version)'
python3 -c 'import platform; print(platform.python_implementation())'
python3 -m pip cache dir
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel setuptools
python3 -m pip install --upgrade pytest
python3 -m pip install -e . --user
python3 -m pip install -e .[develop] --user
- name: Ensure version.py exists
run: python3 setup.py bdist_wheel
- name: Run pylint against the code tree
env:
PYTHONPATH: ${{ github.workspace }}/src
run: |
pylint src/decisionengine/
license-check:
name: Run REUSE to check license compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: fsfe/reuse-action@v1