Skip to content

Commit

Permalink
work on options syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeheft committed Jul 7, 2024
1 parent 37bdb31 commit a6b0f56
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/actions/run_rspec/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,22 @@ runs:
with:
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
options: >-
--health-cmd pg_isready # Changed to single-line format
--health-interval 10s
--health-timeout 5s
--health-retries 5
- name: Start Redis service
uses: docker://redis:latest
with:
ports:
- 6379:6379
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
options: >-
--health-cmd "redis-cli ping" # Changed to single-line format
--health-interval 10s
--health-timeout 5s
--health-retries 5
- name: "Setup DB, Run tests"
shell: bash
env:
Expand Down

0 comments on commit a6b0f56

Please sign in to comment.