Create gradle.yml

This commit is contained in:
Risto Lahtela 2019-11-15 09:33:47 +02:00 committed by GitHub
parent c8a97ebca8
commit 737606b922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,31 @@
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: Build with Gradle
run: |
cd Plan
./gradlew shadowJar
test:
runs-on: [ubuntu-latest]
steps:
- name: Checkstyle
run: |
cd Plan
./gradlew checkstyleMain checkstyleTest
- name: Run tests
run: |
cd Plan
./gradlew test