Skip to content

Merge pull request #137 from codeforpakistan/changes #97

Merge pull request #137 from codeforpakistan/changes

Merge pull request #137 from codeforpakistan/changes #97

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: HCAIS-APK
on:
push:
branches:
- master
jobs:
build:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '11.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
channel: 'stable' # 'dev', 'alpha', default to: 'stable
# Get flutter dependencies.
- run: flutter pub get
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed .
# Statically analyze the Dart code for any errors.
# Run widget tests for our flutter project.
- run: flutter test
# Build apk.
- run: flutter build apk --debug
# Upload generated apk to the artifacts.
- uses: actions/upload-artifact@v2
with:
name: release-apk
path: build/app/outputs/flutter-apk/app-debug.apk
# Download apk only
- uses: actions/download-artifact@v2
with:
path: build/app/outputs/flutter-apk/