Skip to content

Commit

Permalink
Fix dart format and less CI/CD on pull request - only test and format…
Browse files Browse the repository at this point in the history
… validation
  • Loading branch information
rydmike committed Nov 17, 2021
1 parent 3c9a74b commit f9a6eb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
paths-ignore:
- "**.md"
pull_request:
branches: [ master ]
branches: [ none ]
paths-ignore:
- "**.md"
release:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Validate
on:
pull_request:
branches: [none]
push:
branches: [none]
paths-ignore:
Expand Down
3 changes: 1 addition & 2 deletions example/lib/shared/controllers/theme_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ class ThemeController with ChangeNotifier {
}

late FlexInputBorderType _inputDecoratorBorderType;
FlexInputBorderType get inputDecoratorBorderType =>
_inputDecoratorBorderType;
FlexInputBorderType get inputDecoratorBorderType => _inputDecoratorBorderType;
Future<void> setInputDecoratorBorderType(FlexInputBorderType? value,
[bool notify = true]) async {
if (value == null) return;
Expand Down

0 comments on commit f9a6eb1

Please sign in to comment.