Skip to content

package:firehose

package:firehose #9

Workflow file for this run

name: package:firehose
permissions: read-all
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/firehose.yml'
- 'pkgs/firehose/**'
push:
branches: [ main ]
paths:
- '.github/workflows/firehose.yml'
- 'pkgs/firehose/**'
schedule:
- cron: '0 0 * * 0' # weekly
defaults:
run:
working-directory: pkgs/firehose
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [stable, dev]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: ${{ matrix.sdk }}
- run: dart pub get
- run: dart analyze --fatal-infos
- run: dart format --output=none --set-exit-if-changed .
if: ${{ matrix.sdk == 'stable' }}
- run: dart test