-
Notifications
You must be signed in to change notification settings - Fork 159
49 lines (42 loc) · 1.5 KB
/
checks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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: [google_fonts, dynamic_color] # Unmaintained / unreleased: adaptive_breakpoints, adaptive_navigation, adaptive_components, symbols]
flutter-channel: [stable, beta]
steps:
- name: Checkout code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Install Flutter
uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # v2.16.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 }}