mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-05 04:16:06 +00:00
29 lines
468 B
YAML
29 lines
468 B
YAML
|
name: Java CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- breaking-114
|
||
|
- commanding
|
||
|
- commanding-pipeline
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
- breaking-114
|
||
|
- commanding
|
||
|
- commanding-pipeline
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-18.04
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Set up JDK 1.8
|
||
|
uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 1.8
|
||
|
- name: Test with Gradle
|
||
|
run: ./gradlew clean build
|