mirror of
https://github.com/archtechx/money.git
synced 2025-12-12 11:24:03 +00:00
Update GitHub Actions for Laravel 11
This commit is contained in:
parent
dd2977f151
commit
b6c0e1afe4
1 changed files with 60 additions and 18 deletions
78
.github/workflows/ci.yml
vendored
78
.github/workflows/ci.yml
vendored
|
|
@ -8,50 +8,92 @@ env:
|
||||||
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: [9, 10]
|
laravel: [9, 10, '11']
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: '8.1'
|
- name: Setup PHP
|
||||||
- name: Install composer dependencies
|
uses: shivammathur/setup-php@v2
|
||||||
run: composer require "illuminate/support:^${{ matrix.laravel }}.0"
|
with:
|
||||||
- name: Run tests
|
php-version: '8.1'
|
||||||
run: vendor/bin/pest
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install composer dependencies
|
||||||
|
run: composer require "illuminate/support:^${{ matrix.laravel }}.0"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: vendor/bin/pest
|
||||||
|
|
||||||
phpstan:
|
phpstan:
|
||||||
name: Static analysis (PHPStan)
|
name: Static analysis (PHPStan)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install composer dependencies
|
|
||||||
run: composer install
|
|
||||||
- name: Run phpstan
|
|
||||||
run: vendor/bin/phpstan analyse
|
- name: Install composer dependencies
|
||||||
|
run: composer install
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- name: Run phpstan
|
||||||
|
run: vendor/bin/phpstan analyse
|
||||||
|
|
||||||
php-cs-fixer:
|
php-cs-fixer:
|
||||||
name: Code style (php-cs-fixer)
|
name: Code style (php-cs-fixer)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- 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: "PHP CS Fixer"
|
author_name: PHP CS Fixer
|
||||||
author_email: "phpcsfixer@example.com"
|
author_email: phpcsfixer@example.com
|
||||||
message: Fix code style (php-cs-fixer)
|
message: Fix code style (php-cs-fixer)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue