1
0
Fork 0
mirror of https://github.com/archtechx/livewire-access.git synced 2025-12-12 04:14:03 +00:00

laravel matrix

This commit is contained in:
Abrar Ahmad 2022-02-02 20:04:20 +05:00
parent cff9e78bcf
commit e572940a5d
2 changed files with 8 additions and 3 deletions

View file

@ -7,13 +7,16 @@ on:
jobs:
phpunit:
name: Tests (PHPUnit)
name: Tests (PHPUnit) L${{ matrix.laravel }}
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [8, 9]
steps:
- uses: actions/checkout@v2
- name: Install composer dependencies
run: composer install
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
- name: Run tests
run: vendor/bin/phpunit

View file

@ -25,5 +25,7 @@
},
"require-dev": {
"orchestra/testbench": "^6.9|^7.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}