We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e115757 commit b55fca6Copy full SHA for b55fca6
.github/workflows/ci.yaml
@@ -20,6 +20,7 @@ on:
20
pull_request:
21
name: ci
22
jobs:
23
+ # detect whether or note we should run "bulk" (non-handwritten) unit tests
24
bulk-filter:
25
runs-on: ubuntu-latest
26
permissions:
@@ -33,13 +34,16 @@ jobs:
33
34
- uses: dorny/paths-filter@v3
35
id: filter
36
with:
37
+ # we want to run tests if source code is changed or the scripts
38
+ # used to run the unit tests
39
filters: |
40
src:
41
- '**/*.java'
42
- '**/pom.xml'
43
ci:
44
- '.github/workflows/ci.yaml'
45
- '.kokoro/**'
46
+ # these unit tests are "bulk" (non-handwritten) libraries
47
units:
48
49
needs: bulk-filter
0 commit comments