Skip to content

Commit 63f2e94

Browse files
committed
Initial Bitbucket Pipelines configuration
1 parent 2f946c5 commit 63f2e94

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

bitbucket-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)