Skip to content

Rewrite the JavaDoc logic in Java 11 APIs and use multi-release jar to ensure backward compatibility #880

Rewrite the JavaDoc logic in Java 11 APIs and use multi-release jar to ensure backward compatibility

Rewrite the JavaDoc logic in Java 11 APIs and use multi-release jar to ensure backward compatibility #880

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ubuntu-latest

Check failure on line 13 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build and Test

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 13, Col: 13): Unexpected value 'ubuntu-latest' .github/workflows/build.yml (Line: 14, Col: 15): Unexpected value '11'
java: 11
name: Java ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
# Need to fetch 2 commits for the PR (base commit and head merge commit) so we can compute the diff
fetch-depth: 2
- uses: actions/setup-java@v2
with:
distribution: zulu
java-version: ${{ matrix.java }}
cache: gradle
- run: ./.github/scripts/build.sh