Fix modular example taking forever

This commit is contained in:
Simon Binder 2023-12-09 18:35:24 +01:00
parent 7774fcb6df
commit 5115bc1525
2 changed files with 2 additions and 0 deletions

View File

@ -150,6 +150,7 @@ jobs:
name: "Integration tests"
needs: [setup]
runs-on: ubuntu-latest
timeout-minutes: 10
services:
postgres:
image: postgres

View File

@ -9,4 +9,5 @@ void main() async {
await database.myAccessor
.addUser(user: UsersCompanion.insert(name: 'first_user'));
await database.close();
}