Skip to content

Created empty test files - UTs to be written for 8 files #4

Created empty test files - UTs to be written for 8 files

Created empty test files - UTs to be written for 8 files #4

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Android Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
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:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/[email protected]
- name: Setup Java JDK
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'adopt'
- name: Change wrapper permissions
run: chmod +x ./gradlew
# Runs a single command using the runners shell
- name: Build with Gradle
run: ./gradlew build
# Runs the entire unit test suite
- name: Run Unit Tests
run: ./gradlew test
# # Runs a set of commands using the runners shell
# - name: Upload a Build Artifact
# uses: actions/[email protected]
# with:
# name: WeatherAppLite.apk
# path: app/build/outputs/apk/debug/app-debug.apk