Update stepup config after install #153
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: 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 | |
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: Install composer dependencies on the Behat container | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} exec behat composer install --ignore-platform-reqs -n | |
- name: Run Behat tests | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} exec behat ./behat | |
- name: Output logs on failure | |
if: failure() | |
run: | | |
cd stepup | |
${DOCKER_COMPOSE} logs |