-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (49 loc) · 1.23 KB
/
widget_wrapper.yaml
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
50
51
52
53
54
55
56
57
name: widget_wrapper
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths:
- ".github/workflows/widget_wrapper.yaml"
- "lib/**"
- "test/**"
- "pubspec.yaml"
push:
branches:
- master
paths:
- ".github/workflows/widget_wrapper.yaml"
- "lib/**"
- "test/**"
- "pubspec.yaml"
jobs:
build:
strategy:
matrix:
version: [3.19, 3.24, 3.27, 3.22]
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_version: ${{ matrix.version }}
spell-check:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
with:
includes: |
**/*.md
!brick/**/*.md
.*/**/*.md
modified_files_only: false
verify-version:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 🎯 Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: "stable"
- name: 📦 Install Dependencies
run: |
dart pub get
- name: 🔎 Verify version
run: dart run test --run-skipped -t version-verify