Skip to content

Commit

Permalink
Add .drone.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gervasek committed Mar 8, 2018
1 parent 1dc078e commit bf296ee
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Declare a pipeline
pipeline:
# Declare pipeline step
composer-install:
# Use image for step
image: fpfis/php71-build
# Run commands from this image
commands:
- composer install --ansi

# Declare another step
lint-code:
image: fpfis/php71-build
commands:
- php -l index.php

run-code:
image: fpfis/php71-build
commands:
- php index.php

0 comments on commit bf296ee

Please sign in to comment.