-
Notifications
You must be signed in to change notification settings - Fork 1.1k
add postgres/mysql tests to Actions #1238
Copy link
Copy link
Closed
Labels
Description
make bin/goose;
psql -c 'create database certdb_development;' -U postgres;
./bin/goose -path certdb/pg up;
mysql -e 'create database certdb_development;' -u root;
mysql -e 'SET global sql_mode = 0;' -u root;
./bin/goose -path certdb/mysql up;
run tests with BUILD_TAGS="postgresql mysql" and they automatically use the db
Reactions are currently unavailable