diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2020-10-13 18:36:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 18:36:29 +0200 |
commit | 3546b1352aa6ffb0637886cc4743b9c3d13be37b (patch) | |
tree | f8efeaa9578676622be15eb3d8ace46cb4601abe | |
parent | 437ad6b0f07b705ebc7193fbbeba25007942ca44 (diff) | |
download | GT5-Unofficial-3546b1352aa6ffb0637886cc4743b9c3d13be37b.tar.gz GT5-Unofficial-3546b1352aa6ffb0637886cc4743b9c3d13be37b.tar.bz2 GT5-Unofficial-3546b1352aa6ffb0637886cc4743b9c3d13be37b.zip |
Create gradle.yml
Former-commit-id: 9f6bded8be42e9f7f0dc3092a1c290a71e5fb3ec
-rw-r--r-- | .github/workflows/gradle.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000000..58e1c59ce1 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,26 @@ +# 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: Java CI with Gradle + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build |