Skip to content

Commit 7c8e6a1

Browse files
committed
also run tests if ci is touched
1 parent e64069b commit 7c8e6a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- '**/*.java'
3939
- '**/pom.xml'
4040
ci:
41-
- '.github/workflows/**'
41+
- '.github/workflows/ci.yaml'
4242
- '.kokoro/**'
4343
units:
4444
runs-on: ubuntu-latest
@@ -63,7 +63,7 @@ jobs:
6363
path: ~/.m2/repository
6464
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.week_of_year }}
6565
- run: .kokoro/build.sh
66-
if: ${{ needs.bulk-filter.outputs.src == 'true' }}
66+
if: ${{ needs.bulk-filter.outputs.src == 'true' || needs.bulk-filter.outputs.ci == 'true' }}
6767
env:
6868
JOB_TYPE: test
6969
JOB_NAME: units-${{matrix.java}}
@@ -95,7 +95,7 @@ jobs:
9595
path: ~/.m2/repository
9696
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.week_of_year }}
9797
- run: .kokoro/build.sh
98-
if: ${{ needs.bulk-filter.outputs.src == 'true' }}
98+
if: ${{ needs.bulk-filter.outputs.src == 'true' || needs.bulk-filter.outputs.ci == 'true' }}
9999
shell: bash
100100
env:
101101
JOB_TYPE: test

0 commit comments

Comments
 (0)