This repository was archived by the owner on Aug 2, 2025. It is now read-only.
Revert "Update README.md before archiving (#214)" (#219) #403
This file contains hidden or 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: validate | |
| # Controls when the action will run. | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the main branch | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Run weekly | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sdk: [beta] # todo: re-add stable | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 | |
| with: | |
| sdk: ${{ matrix.sdk }} | |
| - run: dart pub get | |
| - run: dart format --output=none --set-exit-if-changed . | |
| - run: dart analyze --fatal-infos | |
| - run: dart tool/validate_lib.dart | |
| - run: dart tool/gen_docs.dart --verify |