mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 09:10:12 +01:00
8 lines
129 B
Bash
Executable file
8 lines
129 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [[ "$DATABASE_URL" == 'mysql*' ]]
|
|
then
|
|
bundle exec rake ci:full
|
|
else
|
|
bundle exec rake ci:lite
|
|
fi
|
|
|