#228 local yml fix #213
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Build | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
container: eclipse-temurin:21-jdk | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Run Checks | |
run: ./gradlew --stacktrace -PjavafxPlatform=linux build |