package:platform #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: package:platform | |
on: | |
# Run CI on pushes to the main branch, and on PRs against main. | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/platform.yaml' | |
- 'pkgs/platform/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/platform.yaml' | |
- 'pkgs/platform/**' | |
schedule: | |
- cron: "0 0 * * 0" | |
env: | |
PUB_ENVIRONMENT: bot.github | |
defaults: | |
run: | |
working-directory: pkgs/platform/ | |
jobs: | |
correctness: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | |
with: | |
sdk: dev | |
- name: Install dependencies | |
run: dart pub upgrade | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze project source | |
run: dart analyze --fatal-infos | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
sdk: [stable, beta, dev] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Install dependencies | |
run: dart pub upgrade | |
- name: Run Tests | |
run: dart test |