Skip to content

Commit 4e1898d

Browse files
committed
Fix the dart ci not being run in the working dirs
1 parent f7d5737 commit 4e1898d

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/code_quality.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
work_dir: [openapi-generator, openapi-generator-annotations]
20+
work_dir: [ openapi-generator, openapi-generator-annotations ]
21+
defaults:
22+
run:
23+
working-directory: ${{ matrix.work_dir }}
2124
steps:
2225
- name: Checkout
2326
uses: actions/checkout@v3
@@ -56,20 +59,21 @@ jobs:
5659
- run: flutter pub run build_runner build --delete-conflicting-outputs
5760
- run: flutter build apk
5861

59-
# - name: Upload artifact (Client) ⬆️💻
60-
# uses: actions/[email protected]
61-
# with:
62-
# name: example
63-
# path: |
64-
# example/build/web
62+
# - name: Upload artifact (Client) ⬆️💻
63+
# uses: actions/[email protected]
64+
# with:
65+
# name: example
66+
# path: |
67+
# example/build/web
6568

6669
pr_context:
6770
name: Save PR context as artifact
6871
if: ${{ always() && !cancelled() && github.event_name == 'pull_request' }}
6972
runs-on: ubuntu-latest
7073
needs:
71-
# - dependency-review
74+
# - dependency-review
7275
- build
76+
- ci
7377

7478
steps:
7579
- name: Save PR context

0 commit comments

Comments
 (0)