Skip to content

Commit 971f906

Browse files
chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 (#135)
* chore(deps): bump very_good_analysis from 6.0.0 to 7.0.0 Bumps [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/VeryGoodOpenSource/very_good_analysis/releases) - [Changelog](https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md) - [Commits](VeryGoodOpenSource/very_good_analysis@v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: very_good_analysis dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * update analysis files * fixing analysis errors * attempting pana fix * remove channel * 🤦 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Arra <[email protected]>
1 parent 54eaea0 commit 971f906

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
- uses: actions/[email protected]
6767

6868
- uses: subosito/flutter-action@v2
69+
with:
70+
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
6971

7072
- name: Install Dependencies
7173
run: |

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.6.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.7.0.0.yaml

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ dependencies:
1515

1616
dev_dependencies:
1717
test: ^1.16.0
18-
very_good_analysis: ^6.0.0
18+
very_good_analysis: ^7.0.0

test/formz_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Not needed for test files
12
// ignore_for_file: prefer_const_constructors
23
import 'package:formz/formz.dart';
34
import 'package:test/test.dart';

test/helpers/name_input.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class NameInputFormzMixin with FormzMixin {
2121
List<FormzInput<dynamic, dynamic>> get inputs => [name];
2222
}
2323

24+
// Test fixture so allowable
2425
// ignore: must_be_immutable
2526
class NameInputErrorCacheMixin extends FormzInput<String, NameInputError>
2627
with FormzInputErrorCacheMixin {

0 commit comments

Comments
 (0)