mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-04-19 15:15:50 -04:00
19 lines
368 B
YAML
19 lines
368 B
YAML
language: php
|
|
sudo: false
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
|
|
before_script:
|
|
- composer config -g github-oauth.github.com "$GITHUB_TOKEN"
|
|
- composer install -n
|
|
|
|
script:
|
|
- cd tst && ../vendor/bin/phpunit
|
|
|
|
after_script:
|
|
- cd ..
|
|
- vendor/bin/codacycoverage clover tst/log/coverage-clover.xml
|
|
- vendor/bin/test-reporter --coverage-report tst/log/coverage-clover.xml
|