Fixed cyclical bugs #674
This file contains 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: Build and test with Gradle | |
on: [push, pull_request] | |
jobs: | |
test_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 10 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and test with Gradle | |
run: ./gradlew test | |
test_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 8 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and test with Gradle | |
run: ./gradlew test | |
test_mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 8 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and test with Gradle | |
run: ./gradlew test |