WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

feat: enhance push notification support #40

feat: enhance push notification support

feat: enhance push notification support #40

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "samples/**"
- "README.md"
pull_request:
branches: [main]
paths-ignore:
- "samples/**"
- "README.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: make get
- name: Run Format Check
run: make format
- name: Run Lint
run: make lint
- name: Run Tests
run: make test
- name: Run Build
run: make build