split base tests per file #1
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: Test | |
on: push | |
env: | |
APP_ENV: test | |
NODE_ENV: test | |
jobs: | |
BASE: | |
name: Run Behat tests | |
runs-on: ubuntu-latest | |
env: | |
STRIPE_PUBLISHABLE_KEY: ${{ secrets.STRIPE_PUBLISHABLE_KEY }} | |
STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }} | |
steps: | |
- name: Run CoopCycle Web | |
uses: .github/actions/run-coopcycle-web | |
- name: Run Behat | |
run: docker compose exec -T php vendor/bin/behat -f progress | |
- name: Show and upload Symfony test logs on failure | |
if: failure() | |
uses: .github/actions/upload-test-logs |