Skip to content

Update README.md (#11) #180

Update README.md (#11)

Update README.md (#11) #180

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup GCC
uses: egor-tensin/setup-gcc@v1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '21.0.0+28-ea'
cache: 'maven'
- name: Build with Maven
run: sudo -E bash -c "ulimit -l 65536 && ulimit -a && MAVEN_OPTS=--enable-preview mvn --no-transfer-progress --batch-mode --update-snapshots package"