Skip to content

Commit dcbb87b

Browse files
author
TheSnoozer
committed
github actions: the comparision must happen within the curly brakets
1 parent b9821bd commit dcbb87b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/default-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
4747
restore-keys: ${{ runner.os }}-m2
4848
- name: Build with Maven
49-
if: ${{ matrix.java_allow_illegal_access }} == 0
49+
if: ${{ matrix.java_allow_illegal_access == 0 }}
5050
run: mvn clean verify javadoc:javadoc -B
5151
- name: Build with Maven
52-
if: ${{ matrix.java_allow_illegal_access }} == 1
52+
if: ${{ matrix.java_allow_illegal_access == 1 }}
5353
run: mvn clean verify javadoc:javadoc -Pjava-allow-illegal-access -B
5454

5555
integration-test:

0 commit comments

Comments
 (0)