Skip to content

chore: version 1

chore: version 1 #7

Workflow file for this run

name: health
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
health:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Setup Melos
uses: bluefireteam/melos-action@v2
with:
version: "4.0.0"
- name: check code formatting
run: melos exec dart format --set-exit-if-changed .
- name: check code analysis
run: melos exec dart analyze . --fatal-infos
- name: run unit tests
run: melos test
- name: test coverage (readable)
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: "packages/readable/coverage/lcov.info"
min_coverage: 100
- name: test coverage (flutter_readable)
uses: VeryGoodOpenSource/very_good_coverage@v2
with:
path: "packages/flutter_readable/coverage/lcov.info"
min_coverage: 100