Skip to content

feat: mobile adaptive layout #23

feat: mobile adaptive layout

feat: mobile adaptive layout #23

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: analyze
env:
flutter_version: '3.10.x'
jobs:
build:
name: lint flutter code
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: set up flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutter_version }}
channel: 'stable'
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:' # optional, change this to force refresh cache
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:' # optional, change this to specify the cache path
- name: flutter version
run: flutter --version
- name: flutter pub get
run: flutter pub get
- name: analyze dart
uses: invertase/github-action-dart-analyzer@v1
with:
fatal-infos: false
fatal-warnings: true
annotate: true
annotate-only: false
working-directory: ./