feat: utopia compression 0.33.x #278
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: "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.0' | |
- name: Setup Docker | |
run: docker compose up -d --build | |
- name: Wait for Server to be ready | |
run: sleep 10 | |
- name: Run Tests | |
run: docker compose exec web vendor/bin/phpunit --configuration phpunit.xml |