We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328ac78 commit 708f0daCopy full SHA for 708f0da
.github/workflows/tests.yaml
@@ -3,6 +3,28 @@ name: Python package
3
on: [push]
4
5
jobs:
6
+ linters:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ python-version: [3.7, 3.8, 3.9]
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Python ${{ matrix.python-version }}
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: ${{ matrix.python-version }}
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements.txt
22
+ pip install -r tests/test-requirements.txt
23
+ - name: Mypy
24
+ run: mypy piccolo
25
+ - name: Flake8
26
+ run: flake8 piccolo
27
28
postgres:
29
runs-on: ubuntu-latest
30
strategy:
0 commit comments