Skip to content

Commit

Permalink
Fix test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aerni committed Mar 30, 2024
1 parent d1e5a59 commit ebc450c
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
name: Run Tests

on: [push, pull_request, workflow_dispatch]
on: ['push', 'pull_request']

jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
fail-fast: true
matrix:
php: [8.2, 8.1]
laravel: [10.*]
stability: [prefer-stable]
os: [ubuntu-latest]
php: [8.3, 8.2]
laravel: [11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: PHP ${{ matrix.php }} – Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit ebc450c

Please sign in to comment.