MineLittlePony/.travis.yml

18 lines
270 B
YAML
Raw Normal View History

language: java
jdk:
2021-05-15 01:14:42 +02:00
- openjdk16
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)