Skip to content

Commit 1aad62e

Browse files
author
Laks Castro
authored
Merge pull request #78 from lakscastro/chore/add-static-analysis-action
Remove pull_request trigger filters
2 parents 2ea3021 + a5564d7 commit 1aad62e

3 files changed

Lines changed: 9 additions & 12 deletions

File tree

.github/workflows/build-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
flutter-version: "2.10.0"
2121
channel: "stable"
2222
- run: |
23-
flutter --version
24-
flutter pub get
25-
flutter analyze --fatal-infos
23+
flutter --version
24+
flutter pub get
25+
flutter analyze --fatal-infos
2626
2727
- name: Deploy docs
2828
uses: mhausenblas/mkdocs-deploy-gh-pages@master

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
flutter-version: "2.10.0"
1717
channel: "stable"
1818
- run: |
19-
flutter --version
20-
flutter pub get
21-
flutter analyze --fatal-infos
19+
flutter --version
20+
flutter pub get
21+
flutter analyze --fatal-infos
2222
2323
- name: Create credentials file
2424
run: echo $PUB_CREDENTIALS > ~/pub-credentials.json

.github/workflows/static-analysis.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Perform static code analysis through Dart CLI
22
on:
33
workflow_dispatch:
44
pull_request:
5-
types: [opened, reopened, review_requested]
6-
branches:
7-
- master
85
push:
96
branches:
107
- master
@@ -21,6 +18,6 @@ jobs:
2118
flutter-version: "2.10.0"
2219
channel: "stable"
2320
- run: |
24-
flutter --version
25-
flutter pub get
26-
flutter analyze --fatal-infos
21+
flutter --version
22+
flutter pub get
23+
flutter analyze --fatal-infos

0 commit comments

Comments
 (0)