mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 09:37:47 +01:00
chore: actually test other php versions
This commit is contained in:
parent
a6f5723de6
commit
2d6da657ed
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
@ -11,14 +11,26 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php: [7.1, 8.0]
|
php: [7.1, 7.3]
|
||||||
illuminate_version: [5.8.*, 6.*, 7.*]
|
illuminate_version: [5.8.*, 6.*, 7.*]
|
||||||
composer_flags: ['', '--prefer-lowest']
|
composer_flags: ['', '--prefer-lowest']
|
||||||
|
exclude:
|
||||||
|
- php: 7.1
|
||||||
|
illuminate_version: 6.*
|
||||||
|
- php: 7.1
|
||||||
|
illuminate_version: 7.*
|
||||||
|
|
||||||
name: PHP ${{ matrix.php }} | Illuminate ${{ matrix.illuminate_version }} | Composer Flags ${{ matrix.composer_flags }}
|
name: PHP ${{ matrix.php }} | Illuminate ${{ matrix.illuminate_version }} | Composer Flags ${{ matrix.composer_flags }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: ${{ matrix.php }}
|
||||||
|
coverage: none
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user