We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a1b765 commit 7a77e12Copy full SHA for 7a77e12
1 file changed
.github/workflows/tests.yaml
@@ -5,26 +5,18 @@ jobs:
5
linters:
6
name: lint
7
runs-on: ubuntu-latest
8
- strategy:
9
- matrix:
10
- python-version: [3.7, 3.8]
11
steps:
12
- uses: actions/checkout@master
13
- - name: Install
14
- uses: abatilo/actions-poetry@v1.5.0
+ - uses: actions/setup-python@v1
15
with:
16
- python-version: ${{ matrix.python-version }}
17
- poetry_version: 1.0
18
- args: install
19
- - name: Lint with pre-commit
20
21
- with:
22
23
24
- args: run pre-commit run --all-files
+ python-version: 3.8
+ - uses: pre-commit/action@v2.0.0
25
pytest:
26
name: pytest
27
+ strategy:
+ matrix:
+ python-version: [3.7, 3.8]
28
29
30
- name: Install
0 commit comments