File tree Expand file tree Collapse file tree 3 files changed +2
-37
lines changed Expand file tree Collapse file tree 3 files changed +2
-37
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -29,16 +29,13 @@ jobs:
2929 with :
3030 extra_args : --hook-stage manual --all-files
3131 - name : Run PyLint
32- run : |
33- echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
34- pipx run nox -s pylint
32+ run : pipx run nox -s pylint -- --output-format=github
3533
3634 checks :
3735 name :
3836 🐍 ${{ matrix.python-version }} on ${{ matrix.runs-on }} ${{ matrix.cmake
3937 }}
4038 runs-on : ${{ matrix.runs-on }}
41- needs : [pre-commit]
4239 strategy :
4340 fail-fast : false
4441 matrix :
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def pylint(session: nox.Session) -> None:
3030 """
3131 # This needs to be installed into the package environment, and is slower
3232 # than a pre-commit check
33- session .install ("." , "pylint" )
33+ session .install ("-e ." , "pylint" )
3434 session .run ("pylint" , "cython_cmake" , * session .posargs )
3535
3636
You can’t perform that action at this time.
0 commit comments