Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
- uses: actions/checkout@v4.1.1

- uses: subosito/flutter-action@v2
with:
flutter-version: "3.24.0" #Forcing to 3.24.0 for right now as pana has an issue with Dart 3.6 https://github.com/dart-lang/dartdoc/issues/3947

- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include: package:very_good_analysis/analysis_options.6.0.0.yaml
include: package:very_good_analysis/analysis_options.7.0.0.yaml
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencies:

dev_dependencies:
test: ^1.16.0
very_good_analysis: ^6.0.0
very_good_analysis: ^7.0.0
1 change: 1 addition & 0 deletions test/formz_test.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Not needed for test files
// ignore_for_file: prefer_const_constructors
import 'package:formz/formz.dart';
import 'package:test/test.dart';
Expand Down
1 change: 1 addition & 0 deletions test/helpers/name_input.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class NameInputFormzMixin with FormzMixin {
List<FormzInput<dynamic, dynamic>> get inputs => [name];
}

// Test fixture so allowable
// ignore: must_be_immutable
class NameInputErrorCacheMixin extends FormzInput<String, NameInputError>
with FormzInputErrorCacheMixin {
Expand Down