Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
danylo-safonov-solid committed Sep 12, 2023
1 parent fb48f2c commit 7122b3b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/on-pr-push-code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,21 @@ jobs:
id: check_files
uses: andstor/file-existence-action@v1
with:
files: 'pubspec.yaml'
files:
- 'pubspec.yaml'
- 'tools/add_imports/pubspec.yaml'

- name: Setup dart
if: steps.check_files.outputs.files_exists == 'true'
uses: dart-lang/setup-dart@v1

- name: Get dependencies
- name: Get main dependencies
if: steps.check_files.outputs.files_exists == 'true'
run: dart pub get

- run: dart pub get
- name: Get add_imports dependencies
if: steps.check_files.outputs.files_exists == 'true'
run: dart pub get
working-directory: tools/add_imports

- name: Run static code analysis
Expand Down

0 comments on commit 7122b3b

Please sign in to comment.