Updated dependencies and CIs.

This commit is contained in:
Erik C. Thauvin 2020-07-31 11:09:16 -07:00
parent 5de4f901e8
commit 683cb3aa35
5 changed files with 65 additions and 4 deletions

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

@ -0,0 +1,21 @@
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
env:
BITLY_ACCESS_TOKEN: ${{ secrets.BITLY_ACCESS_TOKEN }}