Skip to content

fix: 🐛 Fixed analysis option issue #832

fix: 🐛 Fixed analysis option issue

fix: 🐛 Fixed analysis option issue #832

Workflow file for this run

name: Build
on:
push:
paths:
- '**.dart'
- '**.yaml'
- '**.yml'
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.0'
cache: true
cache-key: 'flutter-macos-stable-3.10.0-apple'
cache-path: '${{ runner.tool_cache }}/flutter/macos-stable-3.10.0-apple'
pub-cache-key: 'flutter-pub-macos-stable-3.10.0-apple'
- name: Install dependencies
run: flutter pub get
- name: Code Formatting
run: dart format --set-exit-if-changed .
- name: Code Analyse
run: dart analyze
- name: Check Publish Warnings
run: flutter pub publish --dry-run