We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab66b9e commit ac1b0a2Copy full SHA for ac1b0a2
bitbucket-pipelines.yml
@@ -0,0 +1,17 @@
1
+# This is a sample build configuration for PHP.
2
+# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
3
+# Only use spaces to indent your .yml configuration.
4
+# -----
5
+# You can specify a custom docker image from Docker Hub as your build environment.
6
+image: php:7.2.25
7
+
8
+pipelines:
9
+ default:
10
+ - step:
11
+ caches:
12
+ - composer
13
+ script:
14
+ - apt-get update && apt-get install -y unzip
15
+ - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
16
+ - composer install
17
+ - vendor/bin/phpunit
0 commit comments