Skip to content

Configure Renovate

Configure Renovate #51

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and upload coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install flutter
uses: subosito/flutter-action@v1.5.3
with:
# The Flutter version to make available on the path
flutter-version: '2.2.0'
- name: Install flutter dependencies
run: flutter pub get
- name: Build mockito files
run: flutter pub run build_runner build
- name: Run test cases
run: flutter test --coverage
- name: Upload coverage to coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}