fix: cleanup #36
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: tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
linux_tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
laravel: ['^10', '^11'] | |
php: ['8.2', '8.3', '8.4'] | |
stability: ['prefer-lowest', 'prefer-stable'] | |
name: Laravel ${{ matrix.laravel }} - PHP ${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring, dom, fileinfo | |
tools: composer:v2 | |
coverage: none | |
- name: Check for syntax errors in PHP files | |
run: find ./ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l | |
- name: Check composer files | |
run: composer validate --strict | |
- name: Lock Laravel Version | |
run: composer require "illuminate/contracts=${{ matrix.laravel }}" --no-install --no-interaction --no-progress | |
- name: Install dependencies | |
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress | |
- name: Execute tests in default environment | |
run: vendor/bin/phpunit |