We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337d497 commit 137d4f5Copy full SHA for 137d4f5
1 file changed
.github/workflows/maven-build.yml
@@ -65,8 +65,8 @@ jobs:
65
restore-keys: |
66
${{ runner.os }}-maven-
67
- name: Maven Install without Code Coverage
68
- if: ${{ matrix.os == 'windows' }}
+ if: matrix.os == 'windows'
69
run: mvn -B install --file pom.xml
70
- name: Maven Install with Code Coverage
71
- if: ${{ matrix.os != 'windows' }}
+ if: matrix.os != 'windows'
72
run: mvn -B install -D enable-ci --file pom.xml
0 commit comments