Framework V2 #84
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: 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 |