Merge pull request #1 from goedemiddag/feature/case-insensitive-fields #9
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: RequestResponseLog | |
on: [ push ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: mbstring, intl | |
- name: Install composer dependencies | |
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress | |
- name: Execute static analysis | |
run: composer analyse | |
- name: Execute tests via PHPUnit | |
run: composer test:no-coverage | |
- name: Check code style | |
run: composer code-style:check |