Skip to content

fix Java 8 compatibility #11

fix Java 8 compatibility

fix Java 8 compatibility #11

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
strategy:
matrix:
java: [ '8' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: ulimit
run: ulimit -l
- name: Build
run: sudo -E bash -c "ulimit -l 65536 && ulimit -a && mvn --update-snapshots --no-transfer-progress -B clean test"