Skip to content

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 (#4) #15

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 (#4)

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 (#4) #15

Workflow file for this run

name: Dart
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PUB_ENVIRONMENT: bot.github
jobs:
analyze-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk:
- stable
- beta
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
submodules: true
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed example lib test tool
- name: Analyze code
run: dart analyze --fatal-infos example lib test tool
- name: Run VM tests
run: dart test --reporter=github --test-randomize-ordering-seed=random