mirror of
https://github.com/archtechx/laravel-seo.git
synced 2025-12-12 01:44:03 +00:00
Update ci.yml
This commit is contained in:
parent
281c227616
commit
55d217946f
1 changed files with 15 additions and 52 deletions
67
.github/workflows/ci.yml
vendored
67
.github/workflows/ci.yml
vendored
|
|
@ -1,24 +1,21 @@
|
||||||
name: CI
|
name: run-tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches: [main]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches: [main]
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pest:
|
test:
|
||||||
name: Tests (Pest) P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest, windows-latest ]
|
os: [ubuntu-latest, windows-latest]
|
||||||
php: [ 8.1, 8.2 ]
|
php: [8.1, 8.2]
|
||||||
laravel: [ 10.*, 11.*, 12.* ]
|
laravel: [10.*, 11.*, 12.*]
|
||||||
stability: [ prefer-lowest, prefer-stable ]
|
stability: [prefer-lowest, prefer-stable]
|
||||||
include:
|
include:
|
||||||
- laravel: 10.*
|
- laravel: 10.*
|
||||||
testbench: 8.*
|
testbench: 8.*
|
||||||
|
|
@ -34,8 +31,12 @@ jobs:
|
||||||
php: 8.1
|
php: 8.1
|
||||||
- laravel: 12.*
|
- laravel: 12.*
|
||||||
php: 8.1
|
php: 8.1
|
||||||
|
|
||||||
|
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|
@ -53,44 +54,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
|
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
|
||||||
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
|
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
|
||||||
- name: Run tests
|
|
||||||
run: vendor/bin/pest --ci
|
|
||||||
|
|
||||||
phpstan:
|
- name: Execute tests
|
||||||
name: Static analysis (PHPStan)
|
run: vendor/bin/pest --ci
|
||||||
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
|
|
||||||
run: composer global require friendsofphp/php-cs-fixer
|
|
||||||
- name: Run php-cs-fixer
|
|
||||||
run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php
|
|
||||||
- name: Commit changes from php-cs-fixer
|
|
||||||
uses: EndBug/add-and-commit@v5
|
|
||||||
with:
|
|
||||||
author_name: PHP CS Fixer
|
|
||||||
author_email: phpcsfixer@example.com
|
|
||||||
message: Fix code style (php-cs-fixer)
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue