Skip to content

Commit

Permalink
try with exec instead of run
Browse files Browse the repository at this point in the history
  • Loading branch information
timcowlishaw committed Dec 21, 2024
1 parent e0f7df6 commit fc72289
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
run: "docker compose build"

- name: Start dependencies
run: "doct ker compose up -d --no-deps db redis"
run: "docker compose up -d --no-deps db redis app"

- name: Run all tests
run: "docker compose run --no-deps app -- ./ci.sh"
run: "docker compose exec app ./ci.sh"

- name: Teardown the stack
run: "docker compose down"
Expand Down

0 comments on commit fc72289

Please sign in to comment.