Skip to content

Update to Dart 3 (officially) #254

Update to Dart 3 (officially)

Update to Dart 3 (officially) #254

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: pub get
- name: Collect coverage
run: |
pub global activate test_coverage
pub global run test_coverage
- uses: codecov/codecov-action@v1
with:
file: coverage/lcov.info