MineLittlePony/.travis.yml

18 lines
270 B
YAML
Raw Permalink Normal View History

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