docs: remove closed issue #144
Workflow file for this run
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: Test | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
laravel: | |
- "^9.0" | |
- "^10.0" | |
stability: | |
- lowest | |
- stable | |
name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }} / ${{ matrix.stability }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP, with composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
coverage: none | |
- name: Install Composer dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --ansi | |
composer update --prefer-${{ matrix.stability }} --no-interaction --no-progress --ansi | |
- name: Run Code Format Check | |
run: vendor/bin/phpstan analyze | |
- name: Run Static Analysis | |
run: vendor/bin/phpstan analyze | |
- name: Run Unit tests | |
run: vendor/bin/phpunit |