We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9821bd commit dcbb87bCopy full SHA for dcbb87b
1 file changed
.github/workflows/default-tests.yml
@@ -46,10 +46,10 @@ jobs:
46
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
47
restore-keys: ${{ runner.os }}-m2
48
- name: Build with Maven
49
- if: ${{ matrix.java_allow_illegal_access }} == 0
+ if: ${{ matrix.java_allow_illegal_access == 0 }}
50
run: mvn clean verify javadoc:javadoc -B
51
52
- if: ${{ matrix.java_allow_illegal_access }} == 1
+ if: ${{ matrix.java_allow_illegal_access == 1 }}
53
run: mvn clean verify javadoc:javadoc -Pjava-allow-illegal-access -B
54
55
integration-test:
0 commit comments