diff options
-rw-r--r-- | .github/workflows/quality.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index ad45b2ee..fbd3d832 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -16,7 +16,10 @@ defaults: jobs: lint: name: Pylint etc - runs-on: ubuntu-latest + # Because pylint can report different things on different OS's (!) + # (https://github.com/PyCQA/pylint/issues/3489), run this on Mac where local + # pylint gets run. + runs-on: macos-latest steps: - name: "Check out the repo" |