Skip to content

Update to latest version #6

Update to latest version

Update to latest version #6

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: flutter format -o none -l 120 --set-exit-if-changed .
- name: Analyze project
run: flutter analyze