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
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- flutter_hooks
channel:
- master
- stable
fail-fast: false

steps:
- uses: actions/checkout@v2
Expand All @@ -30,11 +32,12 @@ jobs:

- name: Check format
run: dart format --set-exit-if-changed .
if: matrix.channel == 'master'
if: matrix.channel == 'stable'
working-directory: packages/${{ matrix.package }}

- name: Analyze
run: dart analyze .
if: matrix.channel == 'stable'
working-directory: packages/${{ matrix.package }}

- name: Run tests
Expand All @@ -43,4 +46,5 @@ jobs:

- name: Upload coverage to codecov
run: curl -s https://codecov.io/bash | bash
if: matrix.channel == 'stable'
working-directory: packages/${{ matrix.package }}
Loading