Skip to content

Now java docs should be fixed #581

Now java docs should be fixed

Now java docs should be fixed #581

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Gradle
run: ./gradlew build
- name: Archive the test report
if: ${{ always() }} # Always try to save the report (even if the build fails)
uses: actions/upload-artifact@v4
with:
name: test-report
path: build/reports/tests/test
if-no-files-found: ignore # If no files were found, the build probably failed