MineLittlePony/.travis.yml
2020-05-24 00:58:05 +02:00

19 lines
No EOL
341 B
YAML

language: java
jdk:
- openjdk8
jobs:
include:
- stage: init
script: ./gradlew setupCIWorkspace
- stage: check
script: ./gradlew check
- stage: publish
script: ./gradlew build publish
stages:
- name: init
- name: check
if: type IN (pull_request)
- name: publish
if: NOT type IN (pull_request)