-
Notifications
You must be signed in to change notification settings - Fork 36
58 lines (53 loc) · 1.5 KB
/
lint+test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Run lint and tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
# - '2.7'
# - '3.4'
# - '3.5'
# - '3.6'
# - '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-2.7'
# - 'pypy-3.4'
# - 'pypy-3.5'
- 'pypy-3.6'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
architecture:
# - 'x86'
- 'x64'
name: Python ${{ matrix.python-version }} ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v3
- name: Setup python matrix
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -e .[dev]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 chatexchange --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 chatexchange --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test
run:
python -m pytest