Skip to content

chore(deps): bump flutter_riverpod from 2.6.1 to 3.3.2 #18

chore(deps): bump flutter_riverpod from 2.6.1 to 3.3.2

chore(deps): bump flutter_riverpod from 2.6.1 to 3.3.2 #18

Workflow file for this run

name: Flutter CI
on:
push:
branches: [main, master, dev]
pull_request:
branches: [main, master, dev]
jobs:
flutter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Cache pub packages
uses: actions/cache@v3
with:
path: |
~/.pub-cache
key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
${{ runner.os }}-pub-
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Static analysis
run: flutter analyze
- name: Run tests
run: flutter test