Skip to content

CI

CI #1

Workflow file for this run

name: ci
concurrency: build
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Prepare - Checkout
uses: actions/[email protected]
- name: Prepare - Compose
uses: php-actions/composer@v6
- name: Test - Start Compose
run: docker-compose up -d
working-directory: tests
- name: Test - RUN
uses: php-actions/phpunit@master
env:
CONFIG__WAIT=60

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 23, Col: 11): Unexpected value 'CONFIG__WAIT=60 CONFIG__SERVER__URL=http://localhost:8080'
CONFIG__SERVER__URL=http://localhost:8080
with:
bootstrap: vendor/autoload.php
- name: Test - Dump docker logs on failure
if: failure()
uses: jwalton/[email protected]
with:
images: 'squidex,squidex/resizer'
tail: '100'
- name: Test - Cleanup
if: always()
run: docker-compose down
working-directory: tests