Skip to content

Commit

Permalink
Setup docker before running cucumber
Browse files Browse the repository at this point in the history
  • Loading branch information
blacksmith-welder committed Aug 29, 2024
1 parent b35bcca commit 52a7b03
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/cucumber-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ name: Cucumber Tests
on: push

jobs:
docker-setup:
name: Set up Docker
runs-on: ubuntu-latest
steps:
- name: Set up Docker
run: |
docker compose -f docker-compose.yml up
cucumber:
name: Run Cucmber Tests
runs-on: ubuntu-latest
needs: docker-setup

steps:
- name: Checkout repository
Expand Down

0 comments on commit 52a7b03

Please sign in to comment.