File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
example/android/app/src/main Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 28
28
- uses : bluefireteam/melos-action@v3
29
29
# - name: Checkout
30
30
# uses: actions/checkout@v3
31
- - name : Start Docker compose containers
32
- # if: ${{ matrix.work_dir == 'openapi-generator' }}
33
- run : docker-compose -f "docker-compose.yaml" up -d --build
34
31
# - name: Setup Dart
35
32
# uses: dart-lang/setup-dart@v1
36
33
# with:
53
50
run : melos format --set-exit-if-changed
54
51
- name : Run analyzer
55
52
run : melos analyze --fatal-warnings
53
+
54
+ - name : Install Docker Compose
55
+ run : |
56
+ sudo apt-get update
57
+ sudo apt-get install -y docker-compose
58
+ - name : Start Docker compose containers
59
+ # if: ${{ matrix.work_dir == 'openapi-generator' }}
60
+ run : docker-compose -f "docker-compose.yaml" up -d --build
56
61
- name : Run tests
57
62
run : melos run test:all
58
63
90
95
fail_ci_if_error : true
91
96
env :
92
97
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }} # Required only for private repositories
98
+ - name : Stop Docker Container
99
+ run : docker-compose -f "docker-compose.yaml" down
93
100
94
101
build :
95
102
name : Build example project 🛠️
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" com.example.example" >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
3
2
<application
4
3
android : label =" example"
5
4
android : icon =" @mipmap/ic_launcher" >
You can’t perform that action at this time.
0 commit comments