Add skip relationships exist check #251
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: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Run Test Suite | |
runs-on: ubuntu-latest | |
env: | |
COMPOSE_FILE: docker-compose.yml | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Tests | |
run: | | |
docker compose up -d --build | |
sleep 5 | |
docker compose exec tests php vendor/bin/phpunit |