Skip to content

Commit

Permalink
Merge pull request #12 from Kristories/develop
Browse files Browse the repository at this point in the history
Fix test
  • Loading branch information
Kristories authored Oct 22, 2024
2 parents ab1749d + 8566a54 commit 2f2ee2b
Showing 1 changed file with 15 additions and 54 deletions.
69 changes: 15 additions & 54 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,79 +4,40 @@ on:
push:
branches:
- "**"
pull_request:
branches: [main]
pull_request:
branches: [main]

jobs:
run-tests:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [6.*, 7.*, 8.*, 9.*, 10.*]
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
- php: 8.1
laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*

exclude:
- laravel: 6.*
php: 7.1
- laravel: 6.*
php: 8.1
- laravel: 6.*
php: 8.2
- laravel: 7.*
php: 7.1
- laravel: 7.*
php: 8.1
- laravel: 7.*
php: 8.2
- laravel: 8.*
php: 7.1
- laravel: 8.*
php: 7.2
- laravel: 8.*
php: 8.2
- laravel: 9.*
php: 7.1
- laravel: 9.*
php: 7.2
- laravel: 9.*
php: 7.3
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.1
- laravel: 10.*
php: 7.2
- laravel: 10.*
php: 7.3
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: '8.0'
- php: 8.2
laravel: 10.*
testbench: 8.*
- php: 8.3
laravel: 11.*
testbench: 9.*

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

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extension: mbstring
extensions: mbstring
coverage: none

- name: Install dependencies
Expand Down

0 comments on commit 2f2ee2b

Please sign in to comment.