Restore the Stepup E2E behat tests #28
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: stepup-behat | |
on: | |
pull_request: | |
push: | |
branches: [ main, feature/*, bugfix/* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
DOCKER_COMPOSE: docker compose -f docker-compose.yml -f docker-compose-behat.yml | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Init environment | |
run: | | |
cd stepup | |
cp .env.test .env | |
cp gateway/surfnet_yubikey.yaml.dist gateway/surfnet_yubikey.yaml | |
${DOCKER_COMPOSE} up -d | |
- name: Report container details | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} ps -a | |
- name: Install composer dependencies on the Behat container | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} exec -T behat bash -lc "composer install --ignore-platform-reqs -n" | |
- name: Run Behat tests | |
run: | | |
cd stepup | |
docker exec -t stepup-behat-1 bash -lc "./behat" | |
- name: Output logs on failure | |
if: failure() | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} logs |