mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 19:06:07 +00:00
05722169f6
Actions act per-branch
29 lines
476 B
YAML
29 lines
476 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 -x test
|