Skip to content

fix(deps): update kotlin monorepo to v2 (major) #188

fix(deps): update kotlin monorepo to v2 (major)

fix(deps): update kotlin monorepo to v2 (major) #188

Workflow file for this run

name: Flutter test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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: dart 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@v3.1.0