Remove prefs from HintManager.Hint #806
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: | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '13' | |
- 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 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '13' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and test with Gradle | |
run: ./gradlew test | |
test_mac: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '13' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build and test with Gradle | |
run: ./gradlew test |