mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
Add SQLite to CI
This commit is contained in:
parent
dd99fc351c
commit
68853adc31
1 changed files with 10 additions and 0 deletions
10
.github/workflows/rust.yml
vendored
10
.github/workflows/rust.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue