feat: enhance example #63
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: Flutter Pencil Kit | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
analyze_and_test: | |
name: Flutter analyze | |
strategy: | |
matrix: | |
flutter: ['stable'] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- run: flutter doctor | |
- run: flutter --version | |
- run: flutter pub get | |
- run: dart format --set-exit-if-changed . | |
- run: flutter analyze |