Skip to content

Ran flutter create

Ran flutter create #9

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- run: flutter pub get
- run: dart analyze --fatal-infos
- run: dart format --output none --set-exit-if-changed .
- run: flutter test