MineLittlePony/.travis.yml

18 lines
269 B
YAML
Raw Normal View History

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