Skip to content

Commit

Permalink
Remove PHP 8.0 from actions as it's no longer actively supported
Browse files Browse the repository at this point in the history
  • Loading branch information
RVxLab committed Jan 31, 2023
1 parent 6e1be69 commit f443b0f
Showing 1 changed file with 25 additions and 22 deletions.
47 changes: 25 additions & 22 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,34 @@ on:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.0, 8.1, 8.2]
laravel: [8.*, 9.*, 10.*]
stability: [prefer-stable]
php: ["8.0", "8.1", "8.2"]
laravel: ["8.*", "9.*", "10.*"]
stability: ["prefer-stable"]
include:
- laravel: 8.*
testbench: ^6.23
symfony: ^5
collision: ^5
- laravel: 9.*
testbench: ^7
symfony: ^6
collision: ^6
- laravel: 10.*
testbench: ^8
symfony: ^6.2
collision: ^7
exclude:
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
- laravel: "8.*"
testbench: "^6.23"
symfony: "^5"
collision: "^5"
- laravel: "9.*"
testbench: "^7"
symfony: "^6"
collision: "^6"
- laravel: "10.*"
php: "8.1"
testbench: "^8"
symfony: "^6.2"
collision: "^7"
- laravel: "10.*"
php: "8.2"
testbench: "^8"
symfony: "^6.2"
collision: "^7"

name: "P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}"

steps:
- name: Checkout code
Expand Down

0 comments on commit f443b0f

Please sign in to comment.