package:appengine #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:appengine | |
permissions: read-all | |
on: | |
# Run CI on pushes to the main branch, and on PRs against main. | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/appengine.yml' | |
- 'pkgs/appengine/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/appengine.yml' | |
- 'pkgs/appengine/**' | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
defaults: | |
run: | |
working-directory: pkgs/appengine | |
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 | |
# Disabled - this would format ~492 files. | |
# - run: dart format --output=none --set-exit-if-changed . | |
# if: ${{ matrix.sdk == 'stable' }} | |
- run: dart test |