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 71479b6 commit 1c01323Copy full SHA for 1c01323
.github/workflows/build.yml
@@ -0,0 +1,40 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-20.04
15
+ strategy:
16
+ matrix:
17
+ include:
18
+ - python-version: 3.7
19
+ env: TOXENV=docs
20
+ - python-version: 3.8
21
+ env: TOXENV=flake8
22
23
+ env: TOXENV=pylint
24
25
+ env: TOXENV=security
26
27
+ steps:
28
+ - uses: actions/checkout@v2
29
30
+ - name: Set up Python ${{ matrix.python-version }}
31
+ uses: actions/setup-python@v2
32
+ with:
33
+ python-version: ${{ matrix.python-version }}
34
35
+ - name: Run check
36
+ env: ${{ matrix.env }}
37
+ run: |
38
+ pip install --upgrade pip
39
+ pip install --upgrade tox
40
+ tox
0 commit comments