-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (43 loc) · 1.35 KB
/
test.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
name: "Run Tests"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- laravel: 10.*
php: 8.2
testbench: ^8.0
pest: ^1.0
monolog: ^3.0
stability: prefer-stable
- laravel: 9.*
php: 8.1
testbench: ^7.0
pest: ^1.0
monolog: ^2.0
stability: prefer-stable
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 }}" \
"monolog/monolog:${{ matrix.monolog }}" \
"pestphp/pest:${{ matrix.pest }}" \
"pestphp/pest-plugin-laravel:${{ matrix.pest }}" \
--no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: composer pest