Skip to content

Bumps codecov/codecov-action from 3 to 4 #153

Bumps codecov/codecov-action from 3 to 4

Bumps codecov/codecov-action from 3 to 4 #153

Workflow file for this run

# Workflow file of GitHub Actions
name: build
on:
push:
branches:
- master
- feature/*
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 8, 11, 17, 21 ]
steps:
- name: Checkout scm
uses: actions/checkout@v4
- name: Set up jdk
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Test with Maven
run: mvn test -B
- name: Codecov
uses: codecov/codecov-action@v4
with:
name: Codecov on jdk ${{ matrix.java }}
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false