Skip to content

Bump actions/checkout from 3.3.0 to 4.2.2 #317

Bump actions/checkout from 3.3.0 to 4.2.2

Bump actions/checkout from 3.3.0 to 4.2.2 #317

Workflow file for this run

name: Dart CI
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
sdk: [2.17.0, stable, dev]
name: build on ${{ matrix.os }} for ${{ matrix.sdk }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dart-lang/setup-dart@a57a6c04cf7d4840e88432aad6281d1e125f0d46
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze --fatal-infos
- name: Run tests
run: dart test