Skip to content

Bump the github-dependencies group across 1 directory with 6 updates #691

Bump the github-dependencies group across 1 directory with 6 updates

Bump the github-dependencies group across 1 directory with 6 updates #691

Workflow file for this run

# Checks that are run on every commit to main and every pull request.
name: Checks
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check_package:
name: ${{ matrix.package }} using Flutter ${{ matrix.flutter-channel }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
package: [dynamic_color]
flutter-channel: [stable, beta]
steps:
- name: Checkout code
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Install Flutter
uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # v2.21.0
with:
channel: ${{ matrix.flutter-channel }}
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
- name: Get packages
run: flutter pub get
working-directory: packages/${{ matrix.package }}
- name: Analyze Dart code
run: flutter analyze
working-directory: packages/${{ matrix.package }}
- name: Ensure Dart code is formatted correctly
run: dart format --set-exit-if-changed .
working-directory: packages/${{ matrix.package }}
- name: Run Flutter unit tests
run: flutter test
working-directory: packages/${{ matrix.package }}