You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
658 B
31 lines
658 B
---
|
|
resources:
|
|
- name: larvel-websockets-git
|
|
type: git
|
|
icon: github
|
|
source:
|
|
uri: https://github.com/beyondcode/laravel-websockets.git
|
|
|
|
jobs:
|
|
- name: test
|
|
public: true
|
|
plan:
|
|
- get: larvel-websockets-git
|
|
trigger: true
|
|
- task: run-tests
|
|
config:
|
|
platform: linux
|
|
image_resource:
|
|
type: registry-image
|
|
source: { repository: composer }
|
|
inputs:
|
|
- name: larvel-websockets-git
|
|
run:
|
|
path: /bin/sh
|
|
args:
|
|
- -c
|
|
- |
|
|
cd larvel-websockets-git
|
|
|
|
composer install
|
|
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
|