Update pub dep versions to fix beta verify failure (#3208) #276
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: package:samples | |
permissions: read-all | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/samples.yml' | |
- 'pkgs/samples/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/samples.yml' | |
- 'pkgs/samples/**' | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: pkgs/samples/ | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff | |
- run: flutter pub get | |
- run: flutter analyze | |
- run: dart format --set-exit-if-changed . | |
- run: dart tool/samples.dart --verify | |
- run: flutter build web |