removed the constant REQUEST_BECOME_PI from UnitySQL
#1117
This file contains hidden or 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: docker-compose-phpunit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| docker-compose-phpunit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.3" | |
| tools: composer | |
| - run: composer install --dev | |
| - uses: hoverkraft-tech/[email protected] | |
| with: | |
| compose-file: "./tools/docker-dev/docker-compose.yml" | |
| - run: docker compose -f ./tools/docker-dev/docker-compose.yml exec -w '/var/www/unity-web-portal' web bash -c 'XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover="$(mktemp --suffix=.xml)" -d --min-coverage=./coverage.php' |