Skip to content

potential fix: wrong postponed update calc (#22) #54

potential fix: wrong postponed update calc (#22)

potential fix: wrong postponed update calc (#22) #54

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
# strategy:
# matrix:
# sdk: [ dev, beta, stable ]
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
- name: Install dependencies
run: dart pub get
- name: Check format
run: dart format --set-exit-if-changed .
- name: Analyze
run: dart analyze
- name: Run tests
run: flutter test --coverage
- name: Upload coverage to codecov
run: curl -s https://codecov.io/bash | bash