-
Notifications
You must be signed in to change notification settings - Fork 429
71 lines (58 loc) · 1.98 KB
/
test-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: PHP CI with Composer
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup php for mock server
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.21.x'
- name: Setup build-in server
run: |
nohup php -S localhost:9000 -t ./tests/mock-server/ > phpd.log 2>&1 &
echo $! > mock-server.pid
cd tests/socks5-server/
nohup go run main.go > ../../socks5.log 2>&1 &
echo $! > ../../socks-server.pid
- name: Setup php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: |
composer self-update
composer install --no-interaction --prefer-source --dev
- name: Run cases
run: |
./vendor/bin/phpcs --standard=PSR2 src
./vendor/bin/phpcs --standard=PSR2 examples
./vendor/bin/phpcs --standard=PSR2 tests
./vendor/bin/phpunit --coverage-clover=coverage.xml
cat mock-server.pid | xargs kill
cat socks-server.pid | xargs kill
env:
QINIU_ACCESS_KEY: ${{ secrets.QINIU_ACCESS_KEY }}
QINIU_SECRET_KEY: ${{ secrets.QINIU_SECRET_KEY }}
QINIU_TEST_BUCKET: ${{ secrets.QINIU_TEST_BUCKET }}
QINIU_TEST_DOMAIN: ${{ secrets.QINIU_TEST_DOMAIN }}
- name: Print mock servion log
if: ${{ failure() }}
run: |
cat phpd.log
- name: Print socks5 server log
if: ${{ failure() }}
run: |
cat socks5.log
- name: After_success
run: bash <(curl -s https://codecov.io/bash)