feat: Add ignoreNoProfilePictureError
to Ignore Errors in apptive_g…
#97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Quality Checks | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v1 | |
- name: Format, Lint, Publishability | |
run: melos run lint:all | |
- name: Run Tests | |
run: melos run test:coverage:all | |
- name: Zweidenker Heinzelmen Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v1 | |
with: | |
exclude: '**/*_mixin.dart' | |
path: ./packages/zweidenker_heinzelmen/coverage/lcov.info | |
- name: ApptiveGrid Heinzelmen Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v1 | |
with: | |
path: ./packages/apptive_grid_heinzelmen/coverage/lcov.info |