Skip to content

Bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 #56

Bump dependabot/fetch-metadata from 2.4.0 to 2.5.0

Bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 #56

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
# Test with Bref platform
test-bref:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.1, 8.2, 8.3, 8.4 ]
laravel: [ 10.*, 11.*, 12.* ]
stability: [ prefer-stable ]
exclude:
# Laravel 11 requires PHP 8.2+
- laravel: 11.*
php: 8.1
# Laravel 12 requires PHP 8.2+
- laravel: 12.*
php: 8.1
name: P${{ matrix.php }} - L${{ matrix.laravel }} - bref
steps:
- name: Checkout package code
uses: actions/checkout@v6
- name: Run tests
uses: ./.github/actions/test-action
with:
php-version: ${{ matrix.php }}
laravel-version: ${{ matrix.laravel }}
platform: bref
# Test with Vapor platform
test-vapor:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.1, 8.2, 8.3, 8.4 ]
laravel: [ 10.*, 11.*, 12.* ]
stability: [ prefer-stable ]
exclude:
# Laravel 11 requires PHP 8.2+
- laravel: 11.*
php: 8.1
# Laravel 12 requires PHP 8.2+
- laravel: 12.*
php: 8.1
name: P${{ matrix.php }} - L${{ matrix.laravel }} - vapor
steps:
- name: Checkout package code
uses: actions/checkout@v6
- name: Run tests
uses: ./.github/actions/test-action
with:
php-version: ${{ matrix.php }}
laravel-version: ${{ matrix.laravel }}
platform: vapor