Skip to content

Release 3.5.4

Release 3.5.4 #175

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
paths-ignore:
- '.github/**'
- '.vscode/**'
- 'README.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.10.4'
channel: 'stable'
- name: Checkout OneSignal-Flutter-SDK
uses: actions/checkout@v3
- name: Install Dependencies 🔗⛓📦
run: flutter pub get
- name: Static Analysis
run: flutter analyze --no-pub --no-fatal-infos
- name: Ensure the Dart code is formatted correctly
run: flutter format -o none --set-exit-if-changed .
- name: Run Flutter unit tests
run: flutter test