Skip to content

Commit 9eabc7d

Browse files
committed
Run debug
1 parent 8138b4e commit 9eabc7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ jobs:
158158

159159
- name: Connect to PostgreSQL
160160
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
163163
grep -Fxq "Loading complete but no data identified; exiting." log
164164
165165
database-check-sqlite:
@@ -177,6 +177,6 @@ jobs:
177177

178178
- name: Connect to SQLite
179179
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
182182
grep -Fxq "Loading complete but no data identified; exiting." log

0 commit comments

Comments
 (0)