| name: Dart |
| |
| on: |
| # Run on PRs and pushes to the default branch. |
| push: |
| branches: [ master ] |
| pull_request: |
| branches: [ master ] |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| env: |
| PUB_ENVIRONMENT: bot.github |
| DISPLAY: ':99' |
| |
| jobs: |
| test: |
| runs-on: ubuntu-latest |
| strategy: |
| matrix: |
| sdk: [3.4, dev] |
| steps: |
| - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 |
| - uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 |
| with: |
| sdk: ${{ matrix.sdk }} |
| |
| - run: dart pub get |
| id: install |
| |
| - run: dart format --output=none --set-exit-if-changed . |
| - run: dart analyze --fatal-infos |
| |
| - name: Run Xvfb |
| run: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & |
| |
| - run: dart test |