fix: update dependency code and gradle/kotlin version #76
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
# https://arthurdenner.medium.com/run-checks-for-flutter-projects-with-github-actions-ba7fa9b357e1 | |
name: Flutter Analyze | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
- name: Install and set Flutter version | |
uses: subosito/[email protected] | |
with: | |
flutter-version: "3.13.9" | |
- name: Restore packages | |
run: flutter pub get | |
- name: Run analysis | |
run: flutter analyze |