Modify change log #148
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
# 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@v3 | |
with: | |
name: Codecov on jdk ${{ matrix.java }} | |
fail_ci_if_error: false |