This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
Merge pull request #184 from Foxify52/next #129
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: Code Analysis | |
on: | |
push: | |
branches: | |
- main | |
- next | |
paths: | |
- "packages/**" | |
- "lib/**" | |
pull_request: | |
branches: | |
- main | |
- next | |
paths: | |
- "packages/**" | |
- "lib/**" | |
workflow_dispatch: | |
jobs: | |
dart-analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: master | |
- name: 🚧 Do prerequisites | |
run: | | |
flutter pub get | |
dart run cli/prerequisites.dart | |
- name: 🩺 Code Analysis | |
run: dart run cli/code_analysis.dart |