Skip to content

Commit

Permalink
Run CI on both master & stable.
Browse files Browse the repository at this point in the history
Check format/analysis only on master
  • Loading branch information
rrousselGit committed Apr 24, 2023
1 parent cd5f92f commit 6826e5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
matrix:
channel:
- stable
- master
package_path:
- examples/counter
- examples/marvel
Expand Down Expand Up @@ -70,10 +71,11 @@ jobs:
- name: Check format
run: dart format --set-exit-if-changed .
if: matrix.package_path != 'website'
if: matrix.package_path != 'website' && matrix.channel == 'master'

- name: Analyze
run: flutter analyze
if: matrix.channel == 'master'

- name: Run tests
run: |
Expand Down

0 comments on commit 6826e5b

Please sign in to comment.