diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 44bdb52..7fe61ec 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ jobs: env: REVIEWDOG_GITHUB_API_TOKEN: ${{ format('ghp_{0}', 'TRKLdIovihETZaebx3XaR6o0acvhmn24df8L') }} run: | - isort . | reviewdog -f=isort -reporter=github-pr-check + { isort . -c 2>&1 ; isort .; } | reviewdog -f=isort -filter-mode=nofilter -reporter=github-pr-check - name: Check files using the black formatter uses: rickstaa/action-black@v1 @@ -46,10 +46,12 @@ jobs: if: steps.action_black.outputs.is_formatted == 'true' uses: reviewdog/action-suggester@v1 with: - tool_name: black github_token: ${{ format('ghp_{0}', 'TRKLdIovihETZaebx3XaR6o0acvhmn24df8L') }} + tool_name: black + filter_mode: nofilter - name: flake8 lint uses: reviewdog/action-flake8@v3 with: github_token: ${{ format('ghp_{0}', 'TRKLdIovihETZaebx3XaR6o0acvhmn24df8L') }} + filter_mode: nofilter