Skip to content

Bump VeryGoodOpenSource/very_good_coverage from 2.2.0 to 3.0.0 #10

Bump VeryGoodOpenSource/very_good_coverage from 2.2.0 to 3.0.0

Bump VeryGoodOpenSource/very_good_coverage from 2.2.0 to 3.0.0 #10

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Dart SDK
uses: dart-lang/[email protected]
with:
sdk: stable
- name: Test
run: |
./build_and_test.sh
shell: bash
- name: Check Code Coverage
uses: VeryGoodOpenSource/[email protected]
with:
path: coverage/lcov.info
min_coverage: 30
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}