Add SQLite to CI

This commit is contained in:
Ryan Leckey 2020-03-14 20:17:59 -07:00
parent dd99fc351c
commit 68853adc31

View file

@ -59,6 +59,16 @@ jobs:
# unit test: tokio
- run: cargo test --manifest-path sqlx-core/Cargo.toml --no-default-features --features 'chrono uuid postgres mysql tls runtime-tokio'
# integration test: sqlite + async-std
- run: cargo test --no-default-features --features 'runtime-async-std sqlite macros uuid chrono tls'
env:
DATABASE_URL: "sqlite::memory:"
# integration test: sqlite + tokio
- run: cargo test --no-default-features --features 'runtime-tokio sqlite macros uuid chrono tls'
env:
DATABASE_URL: "sqlite::memory:"
# Rust ------------------------------------------------
- name: Prepare build directory for cache