Update maven-build.yml

This commit is contained in:
Liam Newman
2020-02-21 15:42:28 -08:00
committed by GitHub
parent 614c5578b0
commit 337d49770d

View File

@@ -65,8 +65,8 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: Maven Install without Code Coverage
if: matrix.os == "windows"
if: ${{ matrix.os == 'windows' }}
run: mvn -B install --file pom.xml
- name: Maven Install with Code Coverage
if: matrix.os != "windows"
if: ${{ matrix.os != 'windows' }}
run: mvn -B install -D enable-ci --file pom.xml