File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -158,8 +158,8 @@ jobs:
158
158
159
159
- name : Connect to PostgreSQL
160
160
run : |
161
- cargo build --bin site --release
162
- timeout 5s cargo run --bin site --release 'postgresql://postgres:postgres@localhost:5432/postgres' 2>&1 | tee -a log || true
161
+ cargo build --bin site
162
+ timeout 5s ./target/debug/ site 'postgresql://postgres:postgres@localhost:5432/postgres' 2>&1 | tee -a log || true
163
163
grep -Fxq "Loading complete but no data identified; exiting." log
164
164
165
165
database-check-sqlite :
@@ -177,6 +177,6 @@ jobs:
177
177
178
178
- name : Connect to SQLite
179
179
run : |
180
- cargo build --bin site --release
181
- timeout 5s cargo run --bin site --release 2>&1 | tee -a log || true
180
+ cargo build --bin site
181
+ timeout 5s ./target/debug/ site 2>&1 | tee -a log || true
182
182
grep -Fxq "Loading complete but no data identified; exiting." log
You can’t perform that action at this time.
0 commit comments