Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All test in floor_generator run now #808

Merged
merged 19 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 10

container:
image: dart:2.19.3
image: dart:3.3.0

steps:
- name: Check out code
Expand All @@ -35,7 +35,7 @@ jobs:
timeout-minutes: 10

container:
image: dart:2.19.3
image: dart:3.3.0

steps:
- name: Check out code
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ homepage: https://pinchbv.github.io/floor/
publish_to: none

environment:
sdk: '>=2.17.0 <3.0.0'
sdk: '>=3.2.6 <4.0.0'

dependencies:
floor:
Expand All @@ -16,8 +16,8 @@ dependencies:
sdk: flutter

dev_dependencies:
analyzer: ^5.0.0
build_runner: ^2.2.1
analyzer: ^6.4.1
build_runner: ^2.4.8
floor_generator:
path: ../floor_generator/
flutter_test:
Expand Down
1 change: 1 addition & 0 deletions floor/lib/src/sqflite_database_factory.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'dart:io';

import 'package:path/path.dart';
// ignore: unnecessary_import
import 'package:sqflite/sqflite.dart';
import 'package:sqflite_common_ffi/sqflite_ffi.dart';

Expand Down
Loading
Loading