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 562ceed commit 69d132cCopy full SHA for 69d132c
1 file changed
.github/workflows/python-package.yml
@@ -32,8 +32,27 @@ jobs:
32
make install-req
33
make install-test
34
- name: Test
35
+ run: make pytest
36
+ lint:
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - uses: actions/checkout@v2
40
+ - uses: actions/setup-python@v2
41
+ with:
42
+ python-version: 3.9
43
+ - uses: actions/cache@v2
44
45
+ path: ~/.cache/pip
46
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
47
+ restore-keys: |
48
+ ${{ runner.os }}-pip-
49
+ - name: Install dependencies
50
+ run: |
51
+ sudo apt-get update -qq
52
+ sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
53
+ make install-req
54
+ make install-test
55
+ - name: Run linters
56
run: |
- make pytest
57
make pycodestyle
58
make flake8
-
0 commit comments