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 d7c3e6d commit b939603Copy full SHA for b939603
.github/workflows/tests.yaml
@@ -10,14 +10,18 @@ jobs:
10
- name: Install
11
uses: abatilo/actions-poetry@v1.5.0
12
with:
13
- python_version: 3.8.0
+ python_version: 3.8.3
14
poetry_version: 1.0
15
- working_directory: ./working_dir # Optional, defaults to '.'
16
args: install
+ - name: Lint
17
+ uses: abatilo/actions-poetry@v1.5.0
18
+ with:
19
20
+ poetry_version: 1.0
21
+ args: run pre-commit run --all-files
22
- name: Run pytest
23
24
25
26
- working_directory: ./working_dir
- args: run python -m pytest --cov=src --cov-branch --cov-fail-under=75 tests/
27
+ args: run pytest
0 commit comments