diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8f168e1..d2ba7c3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -22,6 +22,19 @@ jobs: java-version: ${{ matrix.java }} - name: Build with Maven run: mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true + + coverage: + runs-on: ubuntu-latest + needs: build + steps: + - uses: actions/checkout@v4 + - name: Set up Java + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 8 + - name: Build with Maven + run: mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=true - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 with: