Skip to content

Update coverage script #255

Update coverage script

Update coverage script #255

Workflow file for this run

name: Coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
container:
image: dart:3.0
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: dart pub get
- name: Collect coverage
run: |
dart pub global activate test_coverage
dart pub global run test_coverage
- uses: codecov/codecov-action@v3
with:
file: coverage/lcov.info