Added more CIs

This commit is contained in:
Erik C. Thauvin 2021-05-08 23:28:06 -07:00
parent 1a80f6ab89
commit 6813a882b5
3 changed files with 58 additions and 0 deletions

18
.github/workflows/gradle.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Java CI with Gradle
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew check