Skip to content

run flutter clean

run flutter clean #43

Workflow file for this run

name: unit test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '2.0.x'
- run: flutter pub get
- run: flutter test --coverage
- uses: codecov/codecov-action@v1.0.7
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage/lcov.info