FlutterのTODO アプリ
Git Hooksを設定することにより、以下実行する。
- コミット時:
formatter
- プッシュ時:
linter
,test
chmod -R +x githooks/
cp -fr githooks/ .git/hooks
- Formatter: Effective Dart
- Linter: lint
Git Hooksで以下が実行される。
- コミット時:
formatter
- プッシュ時:
linter
,test
GitHub Actionsで以下が実行される。
- プルリク作成、プルリク更新、mainブランチにブッシュ時:
linter
,test