Skip to content

simplify publish action #3

simplify publish action

simplify publish action #3

Workflow file for this run

name: Lint and Analyze
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Analyze project
run: flutter analyze
- name: Check formatting
run: dart format --set-exit-if-changed .