Skip to content

Event delete (#126) #1068

Event delete (#126)

Event delete (#126) #1068

name: Cucumber
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cucumber_a:
name: Run Tests Group A
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[a-g]*' | tr '\n' ' ')
cucumber_b:
name: Run Tests Group B
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[h-n]*' | tr '\n' ' ')
cucumber_c:
name: Run Tests Group C
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[o-u]*' | tr '\n' ' ')
cucumber_d:
name: Run Tests Group D
uses: './.github/workflows/cucumber-tests-job.yml'
with:
run-cmd: |
bundle exec cucumber --strict HEADLESS=true HOST=localhost $(find ./staff_features -maxdepth 1 -type d -iname '[v-z]*' | tr '\n' ' ')