Skip to content

Bump actions/checkout from 3.5.3 to 3.6.0 (#225) #235

Bump actions/checkout from 3.5.3 to 3.6.0 (#225)

Bump actions/checkout from 3.5.3 to 3.6.0 (#225) #235

Workflow file for this run

name: Dart CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 * * 0"
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
with:
sdk: dev
- id: install
run: dart pub get
- run: dart format --output=none --set-exit-if-changed .
if: steps.install.outcome == 'success'
- run: dart analyze --fatal-infos
if: steps.install.outcome == 'success'
test:
needs: analyze
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
sdk: [2.19.0, stable, dev]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
with:
sdk: ${{ matrix.sdk }}
- id: install
run: dart pub get
- run: dart test --platform vm
if: steps.install.outcome == 'success'
- run: dart test --platform chrome
if: steps.install.outcome == 'success'