We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f946c5 commit 63f2e94Copy full SHA for 63f2e94
1 file changed
bitbucket-pipelines.yml
@@ -0,0 +1,18 @@
1
+# Template PHP Build
2
+
3
+# This template allows you to validate your PHP application.
4
+# The workflow allows running tests and code linting on the default branch.
5
6
+image: composer:2.0
7
8
9
+pipelines:
10
+ default:
11
+ - parallel:
12
+ - step:
13
+ name: Test
14
+ script:
15
+ - composer install
16
+ - ./vendor/bin/phpunit test
17
+ caches:
18
+ - composer
0 commit comments