Merge pull request #19 from michaeldyrynda/master #25
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 | |
PHP_CS_FIXER_IGNORE_ENV: 1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
on: | |
push: | |
pull_request: | |
branches: [master] | |
jobs: | |
pest: | |
name: Tests (Pest) L${{ matrix.laravel }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
laravel: [9, 10, 11] | |
steps: | |
- uses: actions/checkout@v2 | |
- 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@v2 | |
- name: Install composer dependencies | |
run: composer install | |
- name: Run phpstan | |
run: vendor/bin/phpstan analyse |