[sqflite] remove always_require_non_null_named_parameters lint #328
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: Android build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every sunday at midnight | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} / ${{ matrix.flutter }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./sqflite_support | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
flutter: [stable, beta] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter }} | |
- run: dart pub get | |
- run: dart run tool/run_ci_android.dart |