Skip to content

Commit

Permalink
prepare* workflows: remove redundant check when doing dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Nov 13, 2023
1 parent e2fd74e commit f35adfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/patrol-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
run: flutter analyze

- name: dart format
if: ${{ (success() || failure()) && (contains('3.10.x', matrix.flutter-version) || contains('3.13.x', matrix.flutter-version)) }}
if: success() || failure()
run: dart format --set-exit-if-changed .

- name: flutter pub publish --dry-run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patrol_devtools_extension-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: flutter analyze

- name: dart format
if: ${{ (success() || failure()) && (contains('3.10.x', matrix.flutter-version) || contains('3.13.x', matrix.flutter-version)) }}
if: success() || failure()
run: dart format --set-exit-if-changed .

- name: Build extension
Expand Down

0 comments on commit f35adfe

Please sign in to comment.