Skip to content

upgrade to 1.5.0 and update changelog #545

upgrade to 1.5.0 and update changelog

upgrade to 1.5.0 and update changelog #545

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify -Dstyle.color=always
- name: Upload coverage to Codecov
if: matrix.java == '8'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false