chore: Added spell check and semantic PR workflow (#17) #27
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: Actions on Pull request and push to develop | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
# Publish using custom workflow | |
jobs: | |
dart_pub_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- uses: dart-lang/setup-dart@v1 | |
- name: Install dependencies | |
run: dart pub get | |
- name: Run Dart Analyze | |
run: dart analyze | |