We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c0cf3 commit f26d200Copy full SHA for f26d200
1 file changed
.github/workflows/ci.yml
@@ -53,11 +53,11 @@ jobs:
53
run: cp .ci.settings.xml ${HOME}/.m2/settings.xml
54
55
- name: Test
56
- if: matrix.jdk == '8' && github.event_name == 'pull_request' && github.ref != 'refs/heads/master' && github.ref != 'refs/heads/development'
+ if: github.event_name == 'pull_request' || github.event_name == 'push'
57
run: mvn --batch-mode clean install
58
59
- name: Linter
60
+ if: matrix.jdk == '8' && (github.event_name == 'pull_request' || github.event_name == 'push')
61
run: mvn checkstyle::check
62
63
# - name: Deploy
0 commit comments