-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 1.12 KB
/
on_pull_request.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
name: On pull request
on:
pull_request:
jobs:
get_flutter_version:
uses: surfstudio/flutter-ci-workflows/.github/workflows/get_flutter_version.yml@main
analysis:
needs: get_flutter_version
uses: surfstudio/flutter-ci-workflows/.github/workflows/analysis.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
testing:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/testing.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build_android_example:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/build_android_example.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}
build_ios_example:
needs: [analysis, get_flutter_version]
uses: surfstudio/flutter-ci-workflows/.github/workflows/build_ios_example.yml@main
with:
FLUTTER_VERSION: ${{ needs.get_flutter_version.outputs.FLUTTER_VERSION }}