Skip to content

Bump codecov/codecov-action from 4.3.1 to 4.4.1 #99

Bump codecov/codecov-action from 4.3.1 to 4.4.1

Bump codecov/codecov-action from 4.3.1 to 4.4.1 #99

Workflow file for this run

name: 'Generate coverage report'
on:
push:
branches:
- master
pull_request:
jobs:
coverage:
runs-on: [ubuntu-latest]
name: Coverage on Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
check-latest: true
cache: 'maven'
- name: Generate coverage with JaCoCo
env:
BROWSER: firefox-container
run: mvn -V --color always -ntp clean verify jacoco:prepare-agent test integration-test jacoco:report '-Dgpg.skip'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.4.1
with:
token: ${{secrets.CODECOV_TOKEN}}