Skip to content

Commit

Permalink
ci: Use problem matcher for check-distro as well
Browse files Browse the repository at this point in the history
  • Loading branch information
liskin committed May 3, 2021
1 parent 5d2a4a0 commit 190158e
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,25 @@ jobs:
- uses: actions/checkout@v2
- name: Install remaining dependencies
run: make venv
- name: make check
run: make check
- name: flake8
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: flake8
run: make lint-flake8
- name: mypy
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: mypy
run: make lint-mypy
- name: isort
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: isort
run: make lint-isort
- name: pytest
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: pytest
run: make test
- name: readme
run: make readme

0 comments on commit 190158e

Please sign in to comment.