generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 5
87 lines (74 loc) · 2.49 KB
/
run-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
name: PHPUnit Tests
on:
push:
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'
jobs:
test:
if: github.event_name != 'schedule' || github.repository == 'ylsideas/cockroachdb-laravel'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 8.2, 8.3, 8.4 ]
laravel: [ 11.*, 10.*, 9.* ]
cockroachdb: [ v22.2.17, v23.2.2, v24.3.0 ]
dependencies: [ stable, lowest ]
include:
- laravel: 11.*
testbench: ^9.0
- laravel: 10.*
testbench: ^8.0
- laravel: 9.*
testbench: ^7.0
- php: 8.2
dependencies: lowest
dotenv: ^5.5.0
carbon: ^2.62.1
- php: 8.3
dependencies: lowest
dotenv: ^5.5.0
carbon: ^2.62.1
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependencies }} - crdb.${{ matrix.cockroachdb }} ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run CockroachDB Service
run: docker-compose up -d
env:
VERSION: ${{ matrix.cockroachdb }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_pgsql
tools: composer:v2
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Require Laravel Version
run: >
composer require
"laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}"
--no-interaction --no-update
- name: Require Minimum Packages for version
if: ${{ (matrix.php == '8.2' || matrix.php == '8.3') && matrix.dependencies == 'lowest' }}
run: >
composer require
"vlucas/phpdotenv:${{ matrix.dotenv }}" "nesbot/carbon:${{ matrix.carbon }}"
--no-interaction --no-update
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: ${{ matrix.composer-options }}
- name: Configure Database
run: |
php ./database.php
- name: Execute tests
run: vendor/bin/pest