PHP Classes

File: .travis.yml

Recommend this page to a friend!
  Classes of Wolfy-J   goridge   .travis.yml   Download  
File: .travis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: goridge
Run Golang code from PHP calling its RPC server
Author: By
Last change: Update .travis.yml
Update .travis.yml
Update .travis.yml
release 2.0.0
Date: 6 years ago
Size: 592 bytes
 

Contents

Class file image Download
language: php sudo: required php: - 7.0 - 7.1 - 7.2 go: - 1.8 before_install: - composer self-update install: - composer install --no-interaction --prefer-source - go get "github.com/spiral/goridge" - go get "github.com/stretchr/testify/assert" - go build tests/server.go before_script: - ./server & - ./server server.sock & script: - go test -v - vendor/bin/phpunit --coverage-clover=clover.xml after_script: - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar - php coveralls.phar --verbose --config .coveralls.yml