Skip to content

Commit bf296ee

Browse files
committed
Add .drone.yml
1 parent 1dc078e commit bf296ee

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.drone.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Declare a pipeline
2+
pipeline:
3+
# Declare pipeline step
4+
composer-install:
5+
# Use image for step
6+
image: fpfis/php71-build
7+
# Run commands from this image
8+
commands:
9+
- composer install --ansi
10+
11+
# Declare another step
12+
lint-code:
13+
image: fpfis/php71-build
14+
commands:
15+
- php -l index.php
16+
17+
run-code:
18+
image: fpfis/php71-build
19+
commands:
20+
- php index.php

0 commit comments

Comments
 (0)