chore: Release 5.3.6 #291
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| paths-ignore: | |
| - ".github/**" | |
| - ".vscode/**" | |
| - "README.md" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout OneSignal-Flutter-SDK | |
| uses: actions/checkout@v5 | |
| - name: Set up Flutter | |
| uses: ./.github/actions/setup-flutter | |
| - name: Static Analysis | |
| run: flutter analyze | |
| - name: Setup Clang | |
| uses: OneSignal/sdk-actions/.github/actions/setup-clang@main | |
| - name: Check formatting (dart,java,c) | |
| run: dart run rps format-check | |
| - name: Run Flutter unit tests | |
| run: dart run rps test |