Skip to content

README, minimal sdk version and git actions #15

README, minimal sdk version and git actions

README, minimal sdk version and git actions #15

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: Analyze
on:
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' # or: 'beta' or 'master'
- run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: flutter analyze