File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 16
16
REPORTS_DIR : CI_reports
17
17
18
18
jobs :
19
+ coding-standards :
20
+ name : Linting & Coding Standards
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - name : Checkout
24
+ # see https://github.com/actions/checkout
25
+ uses : actions/checkout@v2
26
+ - name : Setup Python Environment
27
+ # see https://github.com/actions/setup-python
28
+ uses : actions/setup-python@v2
29
+ with :
30
+ python-version : python3.9
31
+ architecture : ' x64'
32
+ - name : Install poetry
33
+ # see https://github.com/marketplace/actions/setup-poetry
34
+ uses : Gr1N/setup-poetry@v7
35
+ with :
36
+ poetry-version : 1.1.8
37
+ - uses : actions/cache@v2
38
+ with :
39
+ path : ~/.cache/pypoetry/virtualenvs
40
+ key : ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
41
+ - name : Install dependencies
42
+ run : poetry install
43
+ - name : Run tox
44
+ run : poetry run tox -e flake8
45
+
19
46
build-and-test :
20
47
name : Build & Test (Python ${{ matrix.python-version }}
21
48
runs-on : ubuntu-latest
28
55
- " 3.9" # highest supported
29
56
- " 3.8"
30
57
- " 3.7"
31
- - " 3.6" # lowest supported
58
+ # - "3.6" # lowest supported
32
59
timeout-minutes : 30
33
60
steps :
34
61
- name : Checkout
You can’t perform that action at this time.
0 commit comments