Skip to content

feat: implement PushNotificationService with encrypted token registra… #773

feat: implement PushNotificationService with encrypted token registra…

feat: implement PushNotificationService with encrypted token registra… #773

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Flutter
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.32.5'
- name: Install dependencies
run: flutter pub get
- name: Generate required files
run: dart run build_runner build -d
- name: Generate localizations
run: flutter gen-l10n
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test