psalm-plugin-laravel/.github/workflows/test.yml

56 lines
1.8 KiB
YAML
Raw Normal View History

name: Tests
2020-04-12 23:49:26 +02:00
2022-01-19 23:46:53 +01:00
on: [push, pull_request]
2020-04-12 23:49:26 +02:00
jobs:
2022-02-10 18:00:07 +01:00
test:
2022-01-19 22:45:32 +01:00
runs-on: ${{ matrix.os }}
strategy:
2022-01-19 22:45:32 +01:00
fail-fast: false
matrix:
2022-01-19 22:45:32 +01:00
os: [ubuntu-latest]
2021-12-17 15:36:46 +01:00
php: [7.3, 7.4, 8.0, 8.1]
illuminate_version: [6.*, 8.*]
2022-01-19 22:45:32 +01:00
stability: [prefer-lowest, prefer-stable]
exclude:
2022-01-19 20:43:55 +01:00
# Exclude unsupported combination
# https://laravel.com/docs/8.x/releases#support-policy
- illuminate_version: 6.*
php: 8.1
# "Added PHP 8.1 Support from v8.67.0"
# https://github.com/laravel/framework/blob/8.x/CHANGELOG-8.x.md#v8670-2021-10-22
# see also `matrix.include` section
- illuminate_version: 8.*
php: 8.1
include:
# "Added PHP 8.1 Support from v8.67.0"
- illuminate_version: ^8.67.0
php: 8.1
2022-02-10 17:50:30 +01:00
stability: prefer-stable
2022-01-19 20:43:55 +01:00
- illuminate_version: ^8.67.0
php: 8.1
2022-02-10 17:50:30 +01:00
stability: prefer-lowest
2022-01-19 23:51:59 +01:00
name: P${{ matrix.php }} - ${{ matrix.illuminate_version }} - ${{ matrix.stability }}
2020-04-12 23:49:26 +02:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
2020-06-10 10:05:47 +02:00
tools: composer:v2
2020-04-12 23:49:26 +02:00
- name: Install dependencies
2022-01-19 23:51:59 +01:00
run: |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
2022-01-20 08:19:07 +01:00
composer require "illuminate/container:${{ matrix.illuminate_version }}" "illuminate/contracts:${{ matrix.illuminate_version }}" "illuminate/database:${{ matrix.illuminate_version }}" "illuminate/http:${{ matrix.illuminate_version }}" "illuminate/support:${{ matrix.illuminate_version }}" --prefer-dist --no-interaction
2020-04-12 23:49:26 +02:00
- name: Run Tests
2021-06-14 22:54:19 +02:00
run: composer test