Don't require database in GHA docker workflow check

This commit is contained in:
Ryan W
2023-09-30 11:39:51 -07:00
parent b6dae0665d
commit 16cec22850
6 changed files with 20 additions and 20 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash -e
# If running the rails server then create or migrate existing database
# if [ "${*}" == "./bin/rails server" ]; then
# ./bin/rails db:prepare
# fi
exec "${@}"