We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be542db commit 7fc924fCopy full SHA for 7fc924f
2 files changed
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
+ # manually triggered
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.7"]
15
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Python ${{ matrix.python-version }}
19
+ uses: actions/setup-python@v4
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
+ - name: Install dependencies
23
+ run: make env
24
+ - name: Lint with pylint
25
+ run: make pylint
26
+ - name: Test with pytest
27
+ run: make test
28
+ - name: Documentation
29
+ run: make doc
.travis.yml
0 commit comments