Fix incorrect settings loading when updating DB by adding return to t… #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dart Format | |
on: | |
push: | |
paths: | |
- "app/**" | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Setup Dart | |
uses: dart-lang/setup-dart@v1 | |
- name: Verify formatting | |
run: dart format --output=write . |