Skip to content

Revert "Update README.md" #21

Revert "Update README.md"

Revert "Update README.md" #21

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: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
flutter-version: 3.16.0
cache: true
- name: Install dependencies
run: flutter pub get
- name: Check formatting
run: dart format lib/ --set-exit-if-changed
- name: Analyze project source
run: dart analyze