Update InstallSetDatabaseController.php #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
env: | |
COMPOSE_INTERACTIVE_NO_CLI: 1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
pest: | |
name: Tests (Pest) L${{ matrix.laravel }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
laravel: [10] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install composer dependencies | |
run: composer require "illuminate/support:^${{ matrix.laravel }}.0" | |
- name: Run tests | |
run: vendor/bin/pest | |
phpstan: | |
name: Static analysis (PHPStan) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
- 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@v9 | |
with: | |
author_name: "David Cortés" | |
author_email: "[email protected]" | |
message: Fix code style (php-cs-fixer) |