Don't run mypy_primer on changes to test files (#7854)

Only changes to files in `stdlib` or `stubs` will ever have any effect on the checked open-source code. But also run primer on changes to files in `.github/workflows` so that we can see the effect of changes to the `mypy_primer.yml` file itself.
This commit is contained in:
Alex Waygood
2022-05-17 14:03:58 +01:00
committed by GitHub
parent e1bd9c73f0
commit eadb35e620

View File

@@ -3,6 +3,10 @@ name: Run mypy_primer
on:
# Only run on PR, since we diff against master
pull_request:
paths:
- 'stdlib/**'
- 'stubs/**'
- '.github/workflows/**'
jobs:
mypy_primer: