Skip to content

Merge pull request #5 from tappeddev/fix-scrolling-with-scroll-contro… #28

Merge pull request #5 from tappeddev/fix-scrolling-with-scroll-contro…

Merge pull request #5 from tappeddev/fix-scrolling-with-scroll-contro… #28

Workflow file for this run

name: check
on:
push:
branches:
- dev
- main
pull_request:
# Cancel previous builds by only allowing one concurrent build per ref.
concurrency:
group: tapped-bottom-sheet-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
timeout-minutes: 5
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: ${{ env.FLUTTER_CHANNEL }}
- name: Analyze app
run: |
flutter pub get
cd example
flutter pub get
cd ..
flutter analyze
format:
timeout-minutes: 5
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: ${{ env.FLUTTER_CHANNEL }}
- name: Check formatting
run: find . -name "*.dart" ! -name "*.g.dart" ! -name "*.freezed.dart" ! -path '*/generated/*' ! -path '*/gen/*' | xargs dart format --set-exit-if-changed