Skip to content

Release 2.4.53 (#1915) #551

Release 2.4.53 (#1915)

Release 2.4.53 (#1915) #551

Workflow file for this run

name: Maven Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [17, 21]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven
- run: mvn clean
- run: mvn compile
- run: mvn package -P Jspc
- run: mvn test
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true