feat: utopia compression #282
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: [pull_request] | |
jobs: | |
lint: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Setup Docker | |
run: docker compose up -d --build | |
- name: Wait for Server to be ready | |
run: sleep 10 | |
- name: Run FPM Tests | |
run: docker compose exec fpm vendor/bin/phpunit --configuration phpunit.xml | |
- name: Run Swoole Tests | |
run: docker compose exec swoole vendor/bin/phpunit --configuration phpunit.xml | |
- name: Run Swoole Coroutine Tests | |
run: docker compose exec swoole-coroutine vendor/bin/phpunit --configuration phpunit.xml | |
- name: Run Swoole Compression Tests | |
run: docker compose exec swoole-compression vendor/bin/phpunit --configuration phpunit.xml |