This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Dart #303
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: 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 |