mirror of
https://github.com/archtechx/laravel-seo.git
synced 2026-03-22 00:44:02 +00:00
Merge d9aa85632e into 0a2eef4db4
This commit is contained in:
commit
8e8492e172
2 changed files with 85 additions and 37 deletions
118
.github/workflows/ci.yml
vendored
118
.github/workflows/ci.yml
vendored
|
|
@ -3,64 +3,112 @@ name: CI
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pest:
|
pest:
|
||||||
name: Tests (Pest) L${{ matrix.laravel }}
|
name: Tests (Pest) L${{ matrix.laravel }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
laravel: [10, 11, 12]
|
laravel: [10, 11, 12, '13']
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: 8.2
|
|
||||||
tools: composer:v2
|
|
||||||
coverage: none
|
|
||||||
- name: Install composer dependencies
|
|
||||||
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
|
|
||||||
- name: Run tests
|
|
||||||
run: vendor/bin/pest
|
|
||||||
|
|
||||||
phpstan:
|
|
||||||
name: Static analysis (PHPStan)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: 8.2
|
|
||||||
tools: composer:v2
|
|
||||||
coverage: none
|
|
||||||
- name: Install composer dependencies
|
|
||||||
run: composer install
|
|
||||||
- name: Run phpstan
|
|
||||||
run: vendor/bin/phpstan analyse
|
|
||||||
|
|
||||||
php-cs-fixer:
|
|
||||||
name: Code style (php-cs-fixer)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: 8.2
|
php-version: 8.2
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
coverage: none
|
coverage: none
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install composer dependencies
|
||||||
|
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: vendor/bin/pest
|
||||||
|
|
||||||
|
phpstan:
|
||||||
|
name: Static analysis (PHPStan)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: 8.2
|
||||||
|
tools: composer:v2
|
||||||
|
coverage: none
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install composer dependencies
|
||||||
|
run: composer install
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Run phpstan
|
||||||
|
run: vendor/bin/phpstan analyse
|
||||||
|
|
||||||
|
php-cs-fixer:
|
||||||
|
name: Code style (php-cs-fixer)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: 8.2
|
||||||
|
tools: composer:v2
|
||||||
|
coverage: none
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Install php-cs-fixer
|
- name: Install php-cs-fixer
|
||||||
run: composer global require friendsofphp/php-cs-fixer
|
run: composer global require friendsofphp/php-cs-fixer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Run php-cs-fixer
|
- name: Run php-cs-fixer
|
||||||
run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php
|
run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Commit changes from php-cs-fixer
|
- name: Commit changes from php-cs-fixer
|
||||||
uses: EndBug/add-and-commit@v5
|
uses: EndBug/add-and-commit@v5
|
||||||
with:
|
with:
|
||||||
author_name: "github-actions[bot]"
|
author_name: github-actions[bot]
|
||||||
author_email: "github-actions[bot]@users.noreply.github.com"
|
author_email: github-actions[bot]@users.noreply.github.com
|
||||||
message: Fix code style (php-cs-fixer)
|
message: Fix code style (php-cs-fixer)
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.2",
|
"php": "^8.2",
|
||||||
"illuminate/support": "^10.0|^11.0|^12.0",
|
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
|
||||||
"illuminate/view": "^10.0|^11.0|^12.0"
|
"illuminate/view": "^10.0|^11.0|^12.0|^13.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"orchestra/testbench": ">=8.0",
|
"orchestra/testbench": ">=8.0",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue