Update pyproject.toml
[PyCatFile.git] / .github / workflows / pythonpackage.yml
blobb5b7c9d18897354f7624ee1363cb87bb40a1cd15
1 name: Python package
3 on: [push]
5 jobs:
6   build:
8     runs-on: ubuntu-latest
9     strategy:
10       max-parallel: 5
11       matrix:
12         python-version: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
14     steps:
15     - uses: actions/checkout@v1
16     - name: Set up Python ${{ matrix.python-version }}
17       uses: actions/setup-python@v1
18       with:
19         python-version: ${{ matrix.python-version }}
20     - name: Install dependencies
21       run: |
22         python -m pip install --upgrade pip
23     - name: Lint with flake8
24       run: |
25         pip install flake8
26         # stop the build if there are Python syntax errors or undefined names
27         flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
28         # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
29         flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
30     - name: Test with pytest
31       run: |
32         pip install pytest
33         pytest