Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2020-11-10 10:59:45 -08:00
parent 34cedc21e6
commit afe6d3ebc9
22 changed files with 91 additions and 102 deletions

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

@ -0,0 +1,19 @@
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 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew check