Skip to content

Update examples/form_flow/packages/formz_inputs/test/name_test.dart #304

Update examples/form_flow/packages/formz_inputs/test/name_test.dart

Update examples/form_flow/packages/formz_inputs/test/name_test.dart #304

Workflow file for this run

name: examples
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.3.0"
channel: "stable"
- name: Install Tools
run: |
flutter pub global activate melos 2.9.0
- name: Initialize tools
run: melos bs
- name: Run CI workflow (format, analyze, test)
run: melos run WF:ci
- name: Check code coverage
uses: VeryGoodOpenSource/[email protected]
with:
path: "./coverage/merged.lcov.info"
exclude: "**/*.freezed.dart **/*.g.dart **/*.gr.dart"
- name: Upload coverage data to codecov.io
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "./coverage/merged.lcov.info"
fail_ci_if_error: true
verbose: true