mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 04:27:59 +01:00
17 lines
269 B
YAML
17 lines
269 B
YAML
language: java
|
|
jdk:
|
|
- openjdk8
|
|
|
|
jobs:
|
|
include:
|
|
- stage: check
|
|
script: ./gradlew check
|
|
- stage: publish
|
|
script: ./gradlew build publish
|
|
|
|
stages:
|
|
- name: check
|
|
if: type IN (pull_request)
|
|
- name: publish
|
|
if: NOT type IN (pull_request)
|
|
|