Testing out Github Actions workflow

This commit is contained in:
Anuken 2019-08-26 16:55:22 -04:00 committed by GitHub
parent 600a2b5ad7
commit 1dfa0d08de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,17 @@
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run unit tests with gradle
run: ./gradlew test