| name: package:io |
| permissions: read-all |
| |
| on: |
| # Run on PRs and pushes to the default branch. |
| push: |
| branches: [ main ] |
| paths: |
| - '.github/workflows/io.yaml' |
| - 'pkgs/io/**' |
| pull_request: |
| branches: [ main ] |
| paths: |
| - '.github/workflows/io.yaml' |
| - 'pkgs/io/**' |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| defaults: |
| run: |
| working-directory: pkgs/io/ |
| |
| jobs: |
| # Check code formatting and static analysis on a single OS (linux) |
| # against Dart dev and stable. |
| analyze: |
| runs-on: ubuntu-latest |
| strategy: |
| fail-fast: false |
| matrix: |
| sdk: [dev, 3.4] |
| steps: |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 |
| - uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c |
| with: |
| sdk: ${{ matrix.sdk }} |
| - id: install |
| name: Install dependencies |
| run: dart pub get |
| - name: Check formatting |
| run: dart format --output=none --set-exit-if-changed . |
| if: always() && steps.install.outcome == 'success' |
| - name: Analyze code |
| run: dart analyze --fatal-infos |
| if: always() && steps.install.outcome == 'success' |
| |
| # Run tests on a matrix consisting of two dimensions: |
| # 1. OS: ubuntu-latest, (macos-latest, windows-latest) |
| # 2. release channel: dev, stable |
| test: |
| needs: analyze |
| runs-on: ${{ matrix.os }} |
| strategy: |
| fail-fast: false |
| matrix: |
| # Add macos-latest and/or windows-latest if relevant for this package. |
| os: [ubuntu-latest] |
| sdk: [dev, 3.4] |
| steps: |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 |
| - uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c |
| with: |
| sdk: ${{ matrix.sdk }} |
| - id: install |
| name: Install dependencies |
| run: dart pub get |
| - run: dart test |
| if: always() && steps.install.outcome == 'success' |