fix: testing docker configuration #12
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 Suite | |
on: | |
pull_request: | |
branches: [main, epic/*] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
test: ["unit", "acceptance"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependenices | |
uses: ./.github/actions/install | |
- name: Setup environment | |
shell: bash | |
run: envsubst < tests/.env.example > tests/.env | |
- name: Cache Docker images. | |
uses: ScribeMD/docker-cache@0.3.6 | |
with: | |
key: docker-${{ runner.os }}-${{ hashFiles('docker-compose.yml') }} | |
- name: Build testing files | |
shell: bash | |
run: php vendor/bin/codecept build | |
- name: Setup docker | |
shell: bash | |
run: sudo bin/test-up.sh | |
- name: Run unit tests | |
if: matrix.test != 'acceptance' | |
run: bin/test-run.sh ${{ matrix.test }} | |
- name: Run acceptance tests | |
if: matrix.test == 'acceptance' | |
run: php vendor/bin/codecept run acceptance | |
- name: Upload codeception output | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2.2.1 | |
with: | |
name: "${{ matrix.test }}-output" | |
path: "./tests/_output" | |
- name: Stop testing container | |
shell: bash | |
run: bin/test-down.sh |