Skip to content

Feature/update widget book #55

Feature/update widget book

Feature/update widget book #55

Workflow file for this run

name: cicd
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint_package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.24.0"
cache: true
- name: format
run: dart format --set-exit-if-changed lib test
- name: analyze
run: flutter analyze lib test
lint_widgetbook:
runs-on: ubuntu-latest
defaults:
run:
working-directory: widgetbook
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: "3.24.0"
cache: false
- name: format
run: dart format --set-exit-if-changed lib
- name: analyze
run: flutter analyze lib