Changed JDK version back #540
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Gradle Test | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v3.0.0 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3.0.0 | |
| with: | |
| java-version: 11 | |
| distribution: liberica | |
| - name: Gradle Wrapper Validation | |
| uses: gradle/wrapper-validation-action@v1.0.4 | |
| - uses: gradle/gradle-build-action@v2.1.5 | |
| with: | |
| arguments: test | |