-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.26 KB
/
test.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
name: Test
on:
push:
workflow_dispatch:
schedule:
- cron: '0 5 * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
env:
latest_php: 8.3
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [
'5.3', '5.4', '5.5', '5.6',
'7.0', '7.1', '7.2', '7.3', '7.4',
'8.0', '8.1', '8.2', '8.3', '8.4',
]
name: PHP ${{ matrix.php }}
steps:
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: error_reporting=E_ALL
tools: composer:v2
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: composer install --quiet --no-ansi --prefer-dist --no-progress --no-interaction
- name: Migrate phpunit XML configuration
run: vendor/bin/phpunit --migrate-configuration || true
- name: Run test suite
run: vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: false
if: matrix.php == env.latest_php