Support asynchronous callbacks for CustomParameter #68
Workflow file for this run
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
# From https://raw.githubusercontent.com/dart-lang/intl/master/.github/workflows/test-package.yml | |
name: Dart CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
# Check code formatting and static analysis on a single OS (linux) | |
# against Dart dev. | |
analyze: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [stable, dev] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/setup-dart@v0.3 | |
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 | |
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, windows-latest] | |
sdk: [stable, dev] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/setup-dart@v0.3 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Run tests | |
run: dart test | |
if: always() && steps.install.outcome == 'success' |