Skip to content

Update JamesIves/github-pages-deploy-action action to v4.6.1 #255

Update JamesIves/github-pages-deploy-action action to v4.6.1

Update JamesIves/github-pages-deploy-action action to v4.6.1 #255

Workflow file for this run

---
name: Reports
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- name: Run tests
run: mvn -B verify -Pjacoco
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true