Skip to content

Unittest

Unittest #32

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "master"
paths:
- lib/**
push:
branches:
- "master"
paths:
- lib/**
workflow_dispatch:
jobs:
build-android:
name: Build for Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter pub get
# - run: flutter analyze
- run: flutter build apk --debug