Skip to content

display more descriptive texts to user, and offer pre-filled issue su… #100

display more descriptive texts to user, and offer pre-filled issue su…

display more descriptive texts to user, and offer pre-filled issue su… #100

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:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: "stable" # 'dev', 'alpha', 'beta', default to: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format ./lib --output=show --set-exit-if-changed
# commented out, since firebase_options.dart file is in gitignore, which is causing issues
# - name: Analyze project source
# run: flutter analyze --fatal-infos
# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
#- name: Run tests
# run: flutter test