-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (79 loc) · 2.32 KB
/
ci.yaml
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
72
73
74
75
76
77
78
79
80
81
82
83
name: CI
on:
push:
pull_request:
schedule:
- cron: '0 10 * * 5'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- 8.1
- 8.2
- 8.3
- 8.4
composer_args:
- ''
- '--prefer-stable'
- '--prefer-stable --prefer-lowest'
name: PHP ${{ matrix.php }} ${{ matrix.composer_args }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Build
env:
COMPOSER_ARGS: ${{ matrix.composer_args }}
run: composer update --no-interaction --no-progress --prefer-dist $COMPOSER_ARGS
- name: Lint
run: vendor/bin/parallel-lint -e php,phpt --exclude tests/temp src tests
- name: Tests
run: vendor/bin/tester -c tests/php.ini -s tests
- name: PHPStan
run: |
vendor/bin/phpstan analyse -v
vendor/bin/phpstan analyse -v -c phpstan.tests.neon.dist
- if: failure()
uses: actions/upload-artifact@v4
with:
name: output
path: tests/**/output
code_style:
runs-on: ubuntu-latest
needs: [ tests ]
name: Code Style
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: none
- name: Build
run: composer update --no-interaction --no-progress --prefer-dist --prefer-stable
- name: Check Code Style
run: vendor/bin/phpcs
code_coverage:
runs-on: ubuntu-latest
needs: [ tests ]
continue-on-error: true
name: Code Coverage
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
coverage: none
- run: composer global require php-coveralls/php-coveralls
- name: Build
run: composer update --no-interaction --no-progress --prefer-dist --prefer-stable
- name: Calculate coverage
run: vendor/bin/tester -c tests/php.ini -p phpdbg tests --coverage coverage.xml --coverage-src src
- name: Upload Coverage Report
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: php-coveralls --verbose --config tests/coveralls.yml