-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.33 KB
/
tests.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
name: tests
on:
pull_request:
push:
branches:
- "master"
jobs:
build:
name: PHP ${{ matrix.php-versions }}
runs-on: ubuntu-latest
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']
steps:
- name: Setup PHP Action
uses: shivammathur/[email protected]
with:
extensions: intl
php-version: "${{ matrix.php-versions }}"
coverage: xdebug
- name: Checkout
uses: actions/checkout@v2
- name: Validate composer.json
run: "composer validate"
- name: Install dependencies
run: "composer install --prefer-dist --no-progress --no-suggest"
- name: Run test suite
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
if: ${{ matrix.php >= 7.1 }}
- name: Run test suite for PHP versions < 7.1
run: "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover=coverage.xml"
if: ${{ matrix.php < 7.1 }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: tests
name: codecov-umbrella
yml: ./codecov.yml
fail_ci_if_error: true