Skip to content

Updated for new Dart versions #8

Updated for new Dart versions

Updated for new Dart versions #8

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