-
-
Notifications
You must be signed in to change notification settings - Fork 18
82 lines (71 loc) · 2.32 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
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
name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
linux_tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
php: ['7.3', '7.4', '8.0']
laravel: ['7.*', '8.*', '9.*']
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: '9.*'
php: '7.3'
- laravel: '9.*'
php: '7.4'
include:
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'
- php: '8.1'
laravel: '9.*'
testbench: '7.*'
stability: 'prefer-stable'
coverage: '☂ '
name: ${{ matrix.coverage }}PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - Ubuntu 20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl
tools: composer:v2
coverage: xdebug
- name: Set Laravel and Testbench versions
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer require --no-update --no-interaction "illuminate/support:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}"
- name: Install dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Execute tests
continue-on-error: false
run: vendor/bin/phpunit --verbose
if: ${{ !matrix.coverage }}
- name: Execute tests with coverage
continue-on-error: false
run: vendor/bin/phpunit --verbose --coverage-clover coverage.xml
if: ${{ matrix.coverage }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
path_to_write_report: ./coverage/codecov_report.txt
verbose: true
if: ${{ matrix.coverage }}