This repository was archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
88 lines (78 loc) · 2.24 KB
/
tests.yml
File metadata and controls
88 lines (78 loc) · 2.24 KB
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
name: Tests
on:
push:
pull_request:
jobs:
tests:
name: PHP ${{ matrix.php }}; PHPUnit ${{ matrix.phpunit }}
runs-on: ubuntu-20.04
strategy:
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
phpunit: ['6.5', '7.5', '8.4', '8.5', '9.0', '9.3']
exclude:
- php: '7.0'
phpunit: '7.5'
- php: '7.0'
phpunit: '8.4'
- php: '7.0'
phpunit: '8.5'
- php: '7.0'
phpunit: '9.0'
- php: '7.0'
phpunit: '9.3'
- php: '7.1'
phpunit: '8.4'
- php: '7.1'
phpunit: '8.5'
- php: '7.1'
phpunit: '9.0'
- php: '7.1'
phpunit: '9.3'
- php: '7.2'
phpunit: '9.0'
- php: '7.2'
phpunit: '9.3'
- php: '8.0'
phpunit: '6.5'
- php: '8.0'
phpunit: '7.5'
- php: '8.0'
phpunit: '8.4'
- php: '8.0'
phpunit: '8.5'
- php: '8.0'
phpunit: '9.0'
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Setup Problem Matchers
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Setup Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer require "phpunit/phpunit:${{ matrix.phpunit }}.*" --no-update --no-interaction
- name: Install PHP 7 Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --no-interaction --no-progress
if: "matrix.php < 8"
- name: Install PHP 8 Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --no-interaction --no-progress --ignore-platform-req=php
if: "matrix.php >= 8"
- name: Execute PHPUnit
run: vendor/bin/phpunit