Skip to content

Commit

Permalink
ci: create sqlite file for testing instead of memory
Browse files Browse the repository at this point in the history
Signed-off-by: Saurav Sharma <[email protected]>
  • Loading branch information
iamsauravsharma committed Oct 21, 2024
1 parent 18ef121 commit 0a93fb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0a93fb4

Please sign in to comment.