We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e59fee commit 8138b4eCopy full SHA for 8138b4e
.github/workflows/ci.yml
@@ -161,3 +161,22 @@ jobs:
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
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
0 commit comments