Removed unused Step in CI

This commit is contained in:
Florian Bouillon 2019-04-25 16:07:26 +02:00
parent ceeb19afcb
commit d6bb20ff22

View File

@ -3,15 +3,11 @@ kind: pipeline
name: Build
steps:
- name: prepare
- name: Build
image: php:latest
commands:
- chmod +x prepare.sh && ./prepare.sh
- name: build
image: php:latest
commands:
- chmod +x prepare.sh && ./prepare.sh
- php composer.phar install
---
kind: pipeline
name: Test