Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 (#14) #16

Bump actions/checkout from 4.1.4 to 4.1.5 (#14)

Bump actions/checkout from 4.1.4 to 4.1.5 (#14) #16

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
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 .
- name: Analyze code
run: dart analyze --fatal-infos .
- name: Run tests on VM
run: dart test --reporter=github --test-randomize-ordering-seed=random