Added Ability to write to files. #68
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 Check | |
on: | |
push: | |
branches: | |
- main | |
- "feature/*" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@v1.6.5 | |
- name: Run format check | |
run: dart format --set-exit-if-changed . | |
- name: Analyze | |
run: dart analyze |