fix c3861c64875ffabf4ca9c1258e2ada42b8e76f24 #1633
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: Gradle Build | |
on: | |
push: | |
branches: | |
- 'dev' | |
- '1.20*' | |
- 'feature/*' | |
pull_request: | |
branches: | |
- 'dev' | |
- '1.20*' | |
- 'feature/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: 'gradle' | |
- name: Setup Gradle | |
run: ./gradlew | |
- name: Build | |
run: ./gradlew build |