Skip to content

Merge branch 'develop' #223

Merge branch 'develop'

Merge branch 'develop' #223

Workflow file for this run

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