fix codecov #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Actions on pull requests | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
pull-request-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Step 1 - Checkout repository code | |
uses: actions/checkout@v4 | |
- name: Step 2 - Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Step 3 - Cache Docker images. | |
uses: ScribeMD/[email protected] | |
with: | |
key: docker-${{ runner.os }} | |
- name: Step 4 - Build & Test | |
run: mvn clean verify -ntp -PIT | |
- name: Step 5 - Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |