We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20e75db + 353d82c commit 398cffcCopy full SHA for 398cffc
.github/workflows/analyze_and_test.yml
@@ -0,0 +1,31 @@
1
+name: analyze_and_test
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ master ]
6
7
+jobs:
8
9
+ flutter_test:
10
+ name: ${{ matrix.package }} running analyze and tests
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ package:
15
+ - 'mindbox'
16
+ - 'mindbox_android'
17
+ - 'mindbox_ios'
18
+ - 'mindbox_platform_interface'
19
+ fail-fast: false
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - uses: actions/setup-java@v1
23
+ with:
24
+ java-version: "12.x"
25
+ - uses: subosito/flutter-action@v1
26
27
+ channel: "stable"
28
+ - run: cd ${{ matrix.package }} && flutter pub get
29
+ - run: cd ${{ matrix.package }} && flutter analyze
30
+ - run: cd ${{ matrix.package }} && flutter test
31
0 commit comments