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.
1 parent fb48f2c commit 7122b3bCopy full SHA for 7122b3b
.github/workflows/on-pr-push-code-check.yml
@@ -15,17 +15,21 @@ jobs:
15
id: check_files
16
uses: andstor/file-existence-action@v1
17
with:
18
- files: 'pubspec.yaml'
+ files:
19
+ - 'pubspec.yaml'
20
+ - 'tools/add_imports/pubspec.yaml'
21
22
- name: Setup dart
23
if: steps.check_files.outputs.files_exists == 'true'
24
uses: dart-lang/setup-dart@v1
25
- - name: Get dependencies
26
+ - name: Get main dependencies
27
28
run: dart pub get
29
- - run: dart pub get
30
+ - name: Get add_imports dependencies
31
+ if: steps.check_files.outputs.files_exists == 'true'
32
+ run: dart pub get
33
working-directory: tools/add_imports
34
35
- name: Run static code analysis
0 commit comments