fix: throttling typo (#132) #260
This file contains 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: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
# Publish using custom workflow | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Set up Java' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
- uses: dart-lang/setup-dart@v1 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
run: | | |
flutter pub get | |
cd example | |
flutter pub get | |
- name: SDK format check | |
run: | | |
make installLinters | |
make checkFormatDart | |
make analyzeDart | |
make formatKotlin | |
make formatSwift | |
- name: Test | |
run: flutter test | |
- name: Build iOS | |
working-directory: ./example | |
run: flutter build ios --simulator --no-codesign | |
- name: Build macOS | |
working-directory: ./example | |
run: flutter build macos | |
- name: Build Android | |
working-directory: ./example | |
run: flutter build apk | |
- name: Build Web | |
working-directory: ./example | |
run: flutter build web |