Skip to content

Commit

Permalink
Added flutter check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsofrancof committed Oct 10, 2024
1 parent 3b385b2 commit c38fc99
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/flutter-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Flutter check

on: [pull_request]

jobs:
flutter-check:
name: flutter-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out repository

- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.7.11'
channel: 'stable'
architecture: x64

- run: flutter channel master
- run: flutter upgrade

- name: Install dependencies
run: dart pub get

- name: Analyze code
run: dart analyze --no-fatal-warnings .

0 comments on commit c38fc99

Please sign in to comment.