Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Unit Tests
on:
push:
branches:
- master
- main
pull_request:
branches:
- "**"
Expand All @@ -22,13 +22,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3, 8.4]
php: ['8.3', '8.4']
laravel: ['^12.0', '^13.0']

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

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -39,7 +40,8 @@ jobs:

- name: Install dependencies
run: |
composer install -o --quiet
composer require "illuminate/support:${{ matrix.laravel }}" "illuminate/database:${{ matrix.laravel }}" "illuminate/events:${{ matrix.laravel }}" --no-update
composer update -o --quiet --prefer-dist

- name: Execute Unit Tests
run: composer test
117 changes: 0 additions & 117 deletions CHANGELOG.markdown

This file was deleted.

Loading
Loading