doc for issue #1118 #393
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: MacOS/iOS build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every sunday at midnight | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} / flutter ${{ matrix.flutter }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./sqflite_support | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-latest | |
flutter: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter }} | |
- run: dart pub get | |
- run: dart run tool/run_ci_ios.dart | |
- run: dart run tool/run_ci_macos.dart |