Skip to content

update codecov action in workflow #73

update codecov action in workflow

update codecov action in workflow #73

Workflow file for this run

name: Actions on pull requests
on:
pull_request:
branches:
- develop
- master
jobs:
build:
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 - Build & Test
run: mvn clean verify -ntp
- name: Step 4 - Build client
run: ./scripts/build_client.sh
- name: Step 5 - Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true