Skip to content

Bump actions/checkout from 4.1.1 to 4.1.2 (#3) #13

Bump actions/checkout from 4.1.1 to 4.1.2 (#3)

Bump actions/checkout from 4.1.1 to 4.1.2 (#3) #13

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@fedb1266e91cf51be2fdb382869461a434b920a3
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