Skip to content

Commit

Permalink
remember to unset DATABASE_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
timcowlishaw committed Dec 20, 2024
1 parent 92b5783 commit 22b9338
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: "docker compose build"

- name: Run all tests
run: docker compose run app -- bundle exec bin/rake spec
run: docker compose run app -- ./ci.sh

- name: Tear down the Stack
run: docker compose down
4 changes: 4 additions & 0 deletions ci.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

unset DATABASE_URL
bundle exec bin/rake spec

0 comments on commit 22b9338

Please sign in to comment.