Skip to content

Update subosito/flutter-action action to v2 #56

Update subosito/flutter-action action to v2

Update subosito/flutter-action action to v2 #56

Workflow file for this run

name: Flutter CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2.16.0
with:
channel: 'stable'
- name: Doctor
run: flutter doctor
- name: Install dependencies
run: flutter packages get
- name: Format
run: flutter format lib test example --set-exit-if-changed
- name: Analyze
run: flutter analyze lib test example
- name: Run tests
run: flutter test --coverage --coverage-path=lcov.info
- uses: codecov/codecov-action@v2.1.0