ffe5988a47b88095cb4fdda519280183fdcf329e
[cached-property.git] / .github / workflows / python-package.yml
1 # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2 # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
4 name: Python package
5
6 on:
7 push:
8 branches: [ master ]
9 paths-ignore:
10 - '**.md'
11 pull_request:
12 branches: [ master ]
13 paths-ignore:
14 - '**.md'
15
16 jobs:
17 run:
18 runs-on: ${{ matrix.operating-system }}
19 strategy:
20 matrix:
21 operating-system: [ubuntu-latest, windows-latest]
22 python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
23
24 steps:
25 - uses: actions/checkout@v2
26 - name: Set up Python ${{ matrix.python-version }}
27 uses: actions/setup-python@v2
28 with:
29 python-version: ${{ matrix.python-version }}
30 - name: Install dependencies
31 run: |
32 python -m pip install --upgrade pip
33 pip install flake8 pytest
34 pip install -r requirements.txt
35 - name: Lint with flake8
36 run: |
37 # stop the build if there are Python syntax errors or undefined names
38 flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
39 # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
40 flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
41 - name: Test with pytest
42 run: |
43 pytest