File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -161,3 +161,22 @@ jobs:
161
161
cargo build --bin site --release
162
162
timeout 5s cargo run --bin site --release '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
+
165
+ database-check-sqlite :
166
+ name : Database Check (sqlite)
167
+ runs-on : ubuntu-latest
168
+
169
+ steps :
170
+ - name : Check out repository code
171
+ uses : actions/checkout@v2
172
+
173
+ - name : Install stable
174
+ uses : actions-rs/toolchain@v1
175
+ with :
176
+ toolchain : stable
177
+
178
+ - name : Connect to SQLite
179
+ run : |
180
+ cargo build --bin site --release
181
+ timeout 5s cargo run --bin site --release 2>&1 | tee -a log || true
182
+ grep -Fxq "Loading complete but no data identified; exiting." log
You can’t perform that action at this time.
0 commit comments