Skip to content

Feature/set support

Feature/set support #8

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage-hive:
runs-on: ubuntu-latest
container:
image: cirrusci/flutter:latest
steps:
- uses: actions/checkout@v4
- name: Collect coverage
run: |
dart pub get
flutter test --coverage
working-directory: hive
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: hive/coverage/lcov.info