Skip to content

Bumped Flutter version in CI #225

Bumped Flutter version in CI

Bumped Flutter version in CI #225

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17.x'
- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v4
with:
channel: stable
version: 3.29.1
- name: Install dependencies
run: |
flutter config --no-analytics
flutter pub get --suppress-analytics
- name: Run tests
run: |
dart analyze lib example/lib
flutter test
- name: Build APK
run: |
cd example; flutter pub get; flutter build apk