Alexandre Bodin 4bcce63afb Use local actions
Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
2020-10-14 19:26:25 +02:00

17 lines
374 B
YAML

name: 'Run E2E tests'
description: 'Run end to end tests'
inputs:
dbOptions:
description: 'Database options'
required: true
runEE:
description: 'Should run EE or CE tests'
runs:
using: 'composite'
steps:
- run: $GITHUB_ACTION_PATH/script.sh
env:
DB_OPTIONS: ${{ inputs.dbOptions }}
RUN_EE: ${{ inputs.runEE }}
shell: bash