Skip to content

Commit 6dea9f7

Browse files
authored
Merge pull request #46 from barryvdh/feat-matrix
Fix runson
2 parents 17eab1e + ba9e4cb commit 6dea9f7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ on:
1212

1313
jobs:
1414
php-tests:
15+
runs-on: ubuntu-20.04
1516
timeout-minutes: 15
1617
env:
1718
COMPOSER_NO_INTERACTION: 1
1819

1920
strategy:
2021
matrix:
2122
php: [8.1, 8.0, 7.4, 7.3]
22-
laravel: [8.*, 9.*]
23+
laravel: [9.*]
2324
dependency-version: [prefer-lowest, prefer-stable]
2425
exclude:
2526
- php: 8.0
@@ -31,6 +32,10 @@ jobs:
3132
include:
3233
- php: 7.2
3334
laravel: 6.*
35+
- php: 7.3
36+
laravel: 7.*
37+
- php: 7.4
38+
laravel: 8.*
3439
steps:
3540
- name: Checkout code
3641
uses: actions/checkout@v2
@@ -43,8 +48,8 @@ jobs:
4348

4449
- name: Install dependencies
4550
run: |
46-
composer require "laravel/framework:${{ matrix.laravel }}" --no-update --no-progress
51+
composer require "illuminate/support:${{ matrix.laravel }}" --no-update --no-progress
4752
composer update --prefer-dist --no-progress
4853
4954
- name: Execute Unit Tests
50-
run: vendor/bin phpunit
55+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)