phan 설치

This commit is contained in:
2020-05-01 15:26:54 +09:00
parent 6de1a523bc
commit 9fd1f620d3
991 changed files with 239131 additions and 14 deletions
+43
View File
@@ -0,0 +1,43 @@
language: php
php:
- '7.0'
- '7.2'
env:
global:
- FORCE_COLOR=1
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
install:
- composer install --prefer-dist
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml --whitelist lib --bootstrap vendor/autoload.php tests
after_success:
- bash <(curl -s https://codecov.io/bash)
jobs:
include:
- stage: release
language: node_js
node_js: '8'
install:
- npm ci
script:
- npm run semantic-release
after_success: false
stages:
- test
- name: release
if: branch = master AND type = push AND fork = false
branches:
except:
- /^v\d+\.\d+\.\d+$/