Add JsonRenderer example #779
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: build | |
on: | |
push: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php-versions: [ '8.2', '8.3' ] | |
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} | |
services: | |
mysql: | |
image: mysql:8.0.23 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_DATABASE: test | |
MYSQL_ALLOW_EMPTY_PASSWORD: true | |
ports: | |
- 33306:3306 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, pdo, pdo_mysql, intl, zip | |
- name: Check PHP version | |
run: php -v | |
- name: Check Composer version | |
run: composer -V | |
- name: Check PHP extensions | |
run: php -m | |
- name: Check MySQL version | |
run: mysql -V | |
- name: Start MySQL | |
run: sudo systemctl start mysql | |
- name: Check MySQL variables | |
run: mysql -uroot -proot -e "SHOW VARIABLES LIKE 'version%';" | |
- name: Create database | |
run: mysql -uroot -proot -e 'CREATE DATABASE IF NOT EXISTS slim_skeleton_test CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;' | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Run test suite | |
run: composer test:all | |
env: | |
APP_ENV: github | |
PHP_CS_FIXER_IGNORE_ENV: 1 |