We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f81247 commit 2fbe826Copy full SHA for 2fbe826
.github/workflows/run-tests.yml
@@ -1,16 +1,18 @@
1
name: test
2
3
-on: [push]
+on:
4
+ - push
5
6
jobs:
7
test:
8
runs-on: ${{ matrix.os }}
9
+
10
strategy:
11
fail-fast: false
12
matrix:
13
os: [ubuntu-latest]
14
php: [8.2]
- laravel: [10.*]
15
+ laravel: ['10.*', '11.*']
16
stability: [prefer-lowest, prefer-stable]
17
18
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
@@ -28,5 +30,6 @@ jobs:
28
30
run: |
29
31
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
32
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
33
34
- name: Execute tests
- run: vendor/bin/phpunit
35
+ run: vendor/bin/phpunit
0 commit comments