fix: Correct JSON serialization behavior to handle invalid items and empty arrays. #78
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: CI | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
auto-review: | |
name: Auto review | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install dependencies | |
run: composer update --no-progress --optimize-autoloader | |
- name: Run phpcs | |
run: composer phpcs | |
- name: Run phpmd | |
run: composer phpmd | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install dependencies | |
run: composer update --no-progress --optimize-autoloader | |
- name: Run unit tests | |
env: | |
XDEBUG_MODE: coverage | |
run: composer test | |
- name: Run mutation tests | |
run: composer test-mutation |