Ignore RST files with code tests
[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 python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
25
26 steps:
27 - uses: actions/checkout@v2
28 - name: Set up Python ${{ matrix.python-version }}
29 uses: actions/setup-python@v2
30 with:
31 python-version: ${{ matrix.python-version }}
32 - name: Install dependencies
33 run: |
34 python -m pip install --upgrade pip
35 pip install flake8 pytest
36 pip install -r requirements.txt
37 - name: Lint with flake8
38 run: |
39 # stop the build if there are Python syntax errors or undefined names
40 flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
41 # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
42 flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
43 - name: Test with pytest
44 run: |
45 pytest