java 11, gradle 7.6, kotlin 1.6, bugfixes and refactoring #12
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
# https://github.com/gradle/wrapper-validation-action | |
- uses: gradle/wrapper-validation-action@v1 | |
# https://github.com/gradle/gradle-build-action | |
- uses: gradle/gradle-build-action@v2 | |
- name: Build with Gradle Wrapper | |
run: ./gradlew build |