forked from laravolt/indonesia
-
Notifications
You must be signed in to change notification settings - Fork 4
93 lines (91 loc) · 2.59 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
82
83
84
85
86
87
88
89
90
91
92
93
name: "Run Tests"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- laravel: 11.*
php: 8.2
testbench: ^9.0
stability: prefer-stable
- laravel: 11.*
php: 8.2
testbench: ^9.0
stability: prefer-lowest
- laravel: 10.*
php: 8.1
testbench: ^8.0
stability: prefer-stable
- laravel: 10.*
php: 8.1
testbench: ^8.0
stability: prefer-lowest
- laravel: 9.*
php: 8.1
testbench: ^7.0
stability: prefer-stable
- laravel: 9.*
php: 8.1
testbench: ^7.0
stability: prefer-lowest
- laravel: 9.*
php: 8.0
testbench: ^7.0
stability: prefer-stable
- laravel: 9.*
php: 8.0
testbench: ^7.0
stability: prefer-lowest
- laravel: 8.*
php: 8.0
testbench: ^6.0
stability: prefer-stable
- laravel: 8.*
php: 8.0
testbench: ^6.0
stability: prefer-lowest
- laravel: 8.*
php: 7.4
testbench: ^6.0
stability: prefer-stable
- laravel: 8.*
php: 7.4
testbench: ^6.0
stability: prefer-lowest
- laravel: 7.*
php: 7.4
testbench: ^5.0
stability: prefer-stable
- laravel: 7.*
php: 7.4
testbench: ^5.0
stability: prefer-lowest
- laravel: 7.*
php: 7.3
testbench: ^5.0
stability: prefer-stable
- laravel: 7.*
php: 7.3
testbench: ^5.0
stability: prefer-lowest
#
name: Laravel ${{ matrix.laravel }} with PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: zip, pdo, sqlite, pdo_sqlite
coverage: none
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" \
"orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: composer pest