Skip to content

Merge pull request #4 from ScenicWeather/dependabot/pip/urllib3-1.26.19 #8

Merge pull request #4 from ScenicWeather/dependabot/pip/urllib3-1.26.19

Merge pull request #4 from ScenicWeather/dependabot/pip/urllib3-1.26.19 #8

Workflow file for this run

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