Fix dog (round 2) (#340)

* Attempt to fix reviewdog

* re-add error format

* try this

* further back in time

* separate mypy thing

* restore stuff
This commit is contained in:
Ethan Roseman
2022-02-04 02:35:41 -05:00
committed by GitHub
parent 0af11df8b8
commit 98e97d3799
2 changed files with 10 additions and 4 deletions
+10
View File
@@ -16,6 +16,16 @@ jobs:
- run: reviewdog -reporter=github-check
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
mypy:
name: mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: tsuyoshicho/action-mypy@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-check
workdir: backend
backend_test:
name: backend tests
-4
View File
@@ -8,7 +8,3 @@ runner:
tsc:
cmd: cd frontend && yarn -s run tsc
format: tsc
mypy:
cmd: cd backend && mypy --show-column-numbers --show-absolute-path
errorformat:
- "%f:%l:%c: %t%*[^:]: %m"