Skip to content

⬆️ Bump fd_lints from 2.3.0 to 2.3.1 #300

⬆️ Bump fd_lints from 2.3.0 to 2.3.1

⬆️ Bump fd_lints from 2.3.0 to 2.3.1 #300

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 }}