Remove support for Python 2.7
[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 - '**.rst'
12 pull_request:
13 branches: [ master ]
14 paths-ignore:
15 - '**.md'
16 - '**.rst'
17
18 jobs:
19 run:
20 runs-on: ${{ matrix.operating-system }}
21 strategy:
22 matrix:
23 # operating-system: [ubuntu-latest, windows-latest, macos-latest]
24 operating-system: [ubuntu-latest, windows-latest]
25 python-version: [3.5, 3.6, 3.7, 3.8]
26
27 steps:
28 - uses: actions/checkout@v2
29 - name: Set up Python ${{ matrix.python-version }}
30 uses: actions/setup-python@v2
31 with:
32 python-version: ${{ matrix.python-version }}
33 - name: Install dependencies
34 run: |
35 python -m pip install --upgrade pip
36 pip install flake8 pytest
37 pip install -r requirements.txt
38 - name: Lint with flake8
39 run: |
40 # stop the build if there are Python syntax errors or undefined names
41 flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
42 # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
43 flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
44 - name: Test with pytest
45 run: |
46 pytest