Merge remote-tracking branch 'origin/master'

This commit is contained in:
Bella 2020-04-27 11:31:42 -04:00
commit a43165eb8e
No known key found for this signature in database
GPG Key ID: DBD4A6030080C8B3
1 changed files with 24 additions and 0 deletions

24
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,24 @@
# 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 ]
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