Skip to content

feat: add custom events support for flutter #212

feat: add custom events support for flutter

feat: add custom events support for flutter #212

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
container:
image: ghcr.io/cirruslabs/flutter:3.35.5
steps:
- name: Checkout OneSignal-Flutter-SDK
uses: actions/checkout@v5
- name: Install Dependencies 🔗⛓📦
run: flutter pub get
- name: Static Analysis
run: flutter analyze
- name: Ensure the Dart code is formatted correctly
run: dart format --set-exit-if-changed --output=none .
- name: Run Flutter unit tests
run: flutter test