The case of the properties of the properties from snake_case
with `…
#173
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: phpunit | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ "8.2", "8.3", "8.4" ] | |
laravel: [ "11.0", "12.0" ] | |
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Redis | |
uses: shogo82148/actions-setup-redis@v1 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv | |
coverage: xdebug | |
- name: Install dependencies | |
run: composer require --dev laravel/framework:^${{ matrix.laravel }} | |
- name: Execute tests | |
run: sudo vendor/bin/phpunit |