Skip to content

Commit fe085a9

Browse files
committed
fix: ci
1 parent 7f3d01b commit fe085a9

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/code_quality.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
- uses: bluefireteam/melos-action@v3
2929
# - name: Checkout
3030
# 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
3431
# - name: Setup Dart
3532
# uses: dart-lang/setup-dart@v1
3633
# with:
@@ -53,6 +50,14 @@ jobs:
5350
run: melos format --set-exit-if-changed
5451
- name: Run analyzer
5552
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
5661
- name: Run tests
5762
run: melos run test:all
5863

@@ -90,6 +95,8 @@ jobs:
9095
fail_ci_if_error: true
9196
env:
9297
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Required only for private repositories
98+
- name: Stop Docker Container
99+
run: docker-compose -f "docker-compose.yaml" down
93100

94101
build:
95102
name: Build example project 🛠️

example/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
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">
32
<application
43
android:label="example"
54
android:icon="@mipmap/ic_launcher">

0 commit comments

Comments
 (0)