We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb25fb commit 27374a5Copy full SHA for 27374a5
1 file changed
.github/workflows/ci.yml
@@ -56,6 +56,10 @@ jobs:
56
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY: deterministic-key
57
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT: derivation-salt
58
EDITOR_ENCRYPTION_KEY: a1b2c3d4e5f67890123456789abcdef0123456789abcdef0123456789abcdef0
59
+ SALESFORCE_CONNECT_HOST: 127.0.0.1
60
+ SALESFORCE_CONNECT_USER: choco
61
+ SALESFORCE_CONNECT_PASSWORD: password
62
+ SALESFORCE_CONNECT_DB: salesforce_test
63
services:
64
postgres:
65
image: postgres:12
@@ -101,6 +105,11 @@ jobs:
101
105
sleep 1
102
106
done
103
107
108
+ - name: Create Salesforce Connect database
109
+ env:
110
+ PGPASSWORD: password
111
+ run: psql -h 127.0.0.1 -U choco -c "CREATE DATABASE salesforce_test;"
112
+
104
113
- name: Database setup
114
run: bin/rails db:setup --trace
115
0 commit comments