-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: create sqlite file for testing instead of memory
Signed-off-by: Saurav Sharma <[email protected]>
- Loading branch information
1 parent
18ef121
commit 0a93fb4
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ jobs: | |
runs-on: "ubuntu-latest" | ||
needs: build | ||
env: | ||
SQLITE_DATABASE_URL: "sqlite::memory:" | ||
SQLITE_DATABASE_URL: "db.sqlite3" | ||
POSTGRES_DATABASE_URL: postgresql://postgres:[email protected]:5432/postgres | ||
MYSQL_DATABASE_URL: mysql://root:[email protected]:3306/default_db | ||
services: | ||
|
@@ -93,6 +93,7 @@ jobs: | |
cargo make run_postgres_example drop | ||
- name: Run sqlite example | ||
run: | | ||
touch db.sqlite3 | ||
cargo make run_sqlite_example apply | ||
cargo make run_sqlite_example list | ||
cargo make run_sqlite_example revert --all --force | ||
|