Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions .github/workflows/all_plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
analyze:
name: "Analyze"
name: "Flutter Analyze"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
Expand All @@ -29,8 +29,23 @@ jobs:
./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Run Analyze"
- name: "Run Flutter Analyze"
run: melos run analyze

pub_dev_publish_check:
name: "Check pub.dev requirements"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v2
- name: "Install Flutter"
run: ./.github/workflows/scripts/install-flutter.sh stable
- name: "Install Tools"
run: |
./.github/workflows/scripts/install-tools.sh
- name: "Bootstrap Workspace"
run: melos bootstrap
- name: "Pub Check"
run: |
melos exec -c 1 --no-private --ignore="*example*" -- \
Expand All @@ -54,7 +69,7 @@ jobs:
"flutter pub get"

check_formatting:
name: "Check formatting"
name: "Check code formatting"
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
Expand Down