Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gibahjoe committed Nov 4, 2024
1 parent 21b9595 commit c4d28d9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
- uses: bluefireteam/melos-action@v3
# - name: Checkout
# uses: actions/checkout@v3
- name: Start Docker compose containers
# if: ${{ matrix.work_dir == 'openapi-generator' }}
run: docker-compose -f "docker-compose.yaml" up -d --build
# - name: Setup Dart
# uses: dart-lang/setup-dart@v1
# with:
Expand All @@ -53,6 +50,14 @@ jobs:
run: melos format --set-exit-if-changed
- name: Run analyzer
run: melos analyze --fatal-warnings

- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Start Docker compose containers
# if: ${{ matrix.work_dir == 'openapi-generator' }}
run: docker-compose -f "docker-compose.yaml" up -d --build
- name: Run tests
run: melos run test:all

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

build:
name: Build example project 🛠️
Expand Down
3 changes: 1 addition & 2 deletions example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.example">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="example"
android:icon="@mipmap/ic_launcher">
Expand Down

0 comments on commit c4d28d9

Please sign in to comment.