MineLittlePony/.travis.yml

18 lines
269 B
YAML
Raw Normal View History

language: java
jdk:
2019-06-02 19:32:12 -04:00
- openjdk8
2019-06-03 00:37:47 -04:00
jobs:
include:
- stage: check
script: ./gradlew check
- stage: publish
script: ./gradlew build publish
stages:
2019-11-30 18:31:58 -05:00
- name: check
if: type IN (pull_request)
2019-06-03 00:37:47 -04:00
- name: publish
2019-11-30 18:31:58 -05:00
if: NOT type IN (pull_request)