Skip to content

feat(dependency): upgrade dependencies and fix android example app (#48) #19

feat(dependency): upgrade dependencies and fix android example app (#48)

feat(dependency): upgrade dependencies and fix android example app (#48) #19

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test
# name: Test, Build and Release apk
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
name: 'Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'dev'
- run: flutter pub get
- run: flutter test