Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0 (#93) #246

Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0 (#93)

Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0 (#93) #246

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn clean verify
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: false