Skip to content

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 #129

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4

Bump dart-lang/setup-dart from 1.6.2 to 1.6.4 #129

Workflow file for this run

name: Dart CI
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
- 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