-
Notifications
You must be signed in to change notification settings - Fork 55
101 lines (88 loc) · 3.5 KB
/
Copy pathtests.yaml
File metadata and controls
101 lines (88 loc) · 3.5 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
89
90
91
92
93
94
95
96
97
98
99
100
101
name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
resolve:
name: Resolve P${{ matrix.php }} - L${{ matrix.laravel }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.4, 8.3, 8.2 ]
laravel: [ 13.*, 12.* ]
exclude:
- php: 8.2
laravel: 13.*
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, dom, intl, json, libxml, mbstring, openssl, zip
tools: composer:v2
- name: Check dependency resolution
run: |
case "${{ matrix.laravel }}" in
13.*) testbench="^11.0" ;;
12.*) testbench="^10.0" ;;
esac
composer require "illuminate/support:${{ matrix.laravel }}" --no-update --no-interaction
composer require --dev "orchestra/testbench:${testbench}" --no-update --no-interaction
composer update --prefer-stable --prefer-dist --no-interaction --no-progress --dry-run
tests:
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
runs-on: ubuntu-latest
needs: resolve
strategy:
fail-fast: true
matrix:
php: [ 8.4, 8.3, 8.2 ]
laravel: [ 13.*, 12.* ]
dependency-version: [ prefer-stable ]
exclude:
- php: 8.2
laravel: 13.*
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, dom, intl, json, libxml, mbstring, openssl, zip
tools: composer:v2
coverage: xdebug
- name: Install dependencies
run: |
case "${{ matrix.laravel }}" in
13.*) testbench="^11.0" ;;
12.*) testbench="^10.0" ;;
esac
composer require "illuminate/support:${{ matrix.laravel }}" --no-update --no-interaction
composer require --dev "orchestra/testbench:${testbench}" --no-update --no-interaction
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --coverage-text
prefer-lowest:
name: Prefer lowest (P8.2)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: curl, dom, intl, json, libxml, mbstring, openssl, zip
tools: composer:v2
coverage: xdebug
- name: Install lowest dependencies
run: |
composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --coverage-text