Skip to content

Add OverlaySupport.local descrption to README.md (#94) #96

Add OverlaySupport.local descrption to README.md (#94)

Add OverlaySupport.local descrption to README.md (#94) #96

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: 'stable'
- run: flutter config --enable-web
- run: flutter pub get
- name: Project format check
run: flutter format --set-exit-if-changed .
- name: Flutter unit test
run: flutter test --coverage --coverage-path=lcov.info
- name: Report CodeCov
uses: codecov/codecov-action@v1.0.2
with:
token: ${{secrets.CODECOV_TOKEN}}
flags: unittests