-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 1.02 KB
/
windows.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
name: Windows
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
timeout-minutes: 5
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Linting
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --ignore=E302,E305 --select=E9,E116,E117,E123,E127,E202,E203,E222,E231,E241,E703,E711,E713,F7,F63,F82,F401,F811,F841,W191,W292,W391 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --ignore=E302,E305 --exit-zero --max-complexity=15 --max-line-length=127 --statistics