diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8bfff11..8cfe46a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,8 @@ jobs: - flutter_hooks channel: - master + - stable + fail-fast: false steps: - uses: actions/checkout@v2 @@ -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 @@ -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 }}