Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Update README.md

Update README.md #124

Workflow file for this run

name: Code Check
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: 'beta'
- name: Install dependencies
run: flutter pub get
- name: Install dependencies
run: flutter pub run build_runner build
- name: Check formatting
run: flutter format --dry-run --set-exit-if-changed .
- name: Do static code analysis
run: dart analyze .