Skip to content

Consume scroll notification #8

Consume scroll notification

Consume scroll notification #8

Workflow file for this run

name: Flutter
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: dart analyze
- name: Install pana
run: dart pub global activate pana
- name: Analyze project source with pana
run: pana
- name: Run flutter test
run: flutter test