-
Notifications
You must be signed in to change notification settings - Fork 19
112 lines (86 loc) · 3.2 KB
/
tests.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Unit Tests
on: [ push, pull_request_target ]
jobs:
php8-1:
name: Unit Tests php8.1 (php ${{ matrix.php-version }})
runs-on: ubuntu-latest
# always run on push events
# only run on pull_request_target event when pull request pulls from fork repository
if: >
github.event_name == 'push' ||
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
php-version: [ 8.1 ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-version }}
# Remove php-cs-fixer until compatible with PHP 8
- run: composer remove --dev --no-update --no-interaction friendsofphp/php-cs-fixer
- run: composer self-update
- run: composer install --no-interaction --prefer-source --dev
- run: composer test
php7-4:
name: Unit Tests php7.4 (php ${{ matrix.php-version }})
runs-on: ubuntu-latest
# always run on push events
# only run on pull_request_target event when pull request pulls from fork repository
if: >
github.event_name == 'push' ||
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
php-version: [ 7.4 ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-version }}
- run: composer self-update
- run: composer install --no-interaction --prefer-source --dev
- run: composer test
php8-0:
name: Unit Tests php8.0 (php ${{ matrix.php-version }})
runs-on: ubuntu-latest
# always run on push events
# only run on pull_request_target event when pull request pulls from fork repository
if: >
github.event_name == 'push' ||
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
php-version: [ 8.0 ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-version }}
- run: composer self-update
- run: composer install --no-interaction --prefer-source --dev
- run: composer test
protobuf:
name: Unit Tests With Protobuf C Extension 3.13 (php ${{ matrix.php-version }})
runs-on: ubuntu-latest
# always run on push events
# only run on pull_request_target event when pull request pulls from fork repository
if: >
github.event_name == 'push' ||
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
php-version: [ 8.1 ]
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php-version }}
extensions: protobuf
- run: composer self-update
- run: composer install --no-interaction --prefer-source --dev
- run: composer test