Skip to content

Commit

Permalink
Merge pull request #13 from devtical/develop
Browse files Browse the repository at this point in the history
Bump
  • Loading branch information
Kristories authored Oct 22, 2024
2 parents 44a296e + 2f2ee2b commit 37eef6d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 56 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
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"laravel/pint": "^1.18",
"orchestra/testbench": "^4.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^8.4 || ^9.0 || ^10.0",
"friendsofphp/php-cs-fixer": "^3.0"
"phpunit/phpunit": "^8.4 || ^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 37eef6d

Please sign in to comment.