Skip to content

Update SDK constraint #18

Update SDK constraint

Update SDK constraint #18

Workflow file for this run

# Name of your workflow.
name: "Checks"
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
# Contains a sequence of tasks.
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v1
# Sets up a flutter environment.
# https://github.com/marketplace/actions/flutter-action
- uses: subosito/flutter-action@v1
with:
channel: "stable" # or: 'dev' or 'beta'
- name: Pub get
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Check format
run: dart format --set-exit-if-changed .
- name: Run unit tests
run: flutter test --test-randomize-ordering-seed random