Skip to content

Merge pull request #1021 from bosskmk/develop #221

Merge pull request #1021 from bosskmk/develop

Merge pull request #1021 from bosskmk/develop #221

Workflow file for this run

name: Coverage
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
steps:
# Without this, there are no files in the directory.
- uses: actions/checkout@v3
# using flutter
- uses: subosito/[email protected]
with:
channel: 'stable'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: flutter test --coverage
# codecov.io
- uses: codecov/codecov-action@v3
with:
file: ./coverage/lcov.info