Skip to content

Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0 #106

Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0

Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0 #106

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8.0.345+1'
- name: Build with Gradle
run:
./gradlew build
- name: Checkstyle & static check
run: |
./gradlew --info checkstyle
./gradlew --info check
- name: Spotbugs
run: |
./gradlew spotbugsMain spotbugsTest