Skip to content

⬆️ Bump coverage from 1.11.0 to 1.11.1 #295

⬆️ Bump coverage from 1.11.0 to 1.11.1

⬆️ Bump coverage from 1.11.0 to 1.11.1 #295

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: Dart
on:
push:
branches: [dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/[email protected]
- name: Install dependencies
run: dart pub get
- name: Analyze project source
run: dart analyze
working-directory: ./lib
- name: Run tests
run: flutter test --coverage
- name: Collect and report coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}