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