Skip to content

step to upload artifact #10

step to upload artifact

step to upload artifact #10

Workflow file for this run

name: run-flutter-test
on: [push]
jobs:
flutter-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter test --no-pub --coverage
- run: sudo apt-get -y install lcov
- run: genhtml coverage/lcov.info -o coverage/html
- uses: actions/upload-artifact@v4
with:
path: coverage