Feat: Connection destroy #17
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: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Start Test Stack | |
run: | | |
export COMPOSE_INTERACTIVE_NO_CLI | |
export DOCKER_BUILDKIT=1 | |
export COMPOSE_DOCKER_CLI_BUILD=1 | |
export BUILDKIT_PROGRESS=plain | |
docker pull composer:2.0 | |
docker compose build | |
docker compose up -d | |
sleep 15 | |
- name: Doctor | |
run: | | |
docker ps | |
- name: Run Tests | |
run: | | |
composer install --profile --ignore-platform-reqs | |
docker compose exec tests vendor/bin/phpunit --configuration phpunit.xml |