Skip to content

rel: release 1.0.2 for mellowtel #45

rel: release 1.0.2 for mellowtel

rel: release 1.0.2 for mellowtel #45

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: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Flutter Actions
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- name: Install dependencies
run: flutter pub get
# Formatting Check
- name: Verify formatting
run: dart format -o none --set-exit-if-changed lib
# Analyze Code
- name: Analyze project source
run: flutter analyze