Skip to content

Build tools updates

Build tools updates #5

Workflow file for this run

name: Build
# Run this workflow every time a new commit pushed to your repository
on: pull_request
jobs:
Build:
# Name the Job
name: Build App
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: "temurin"
java-version: "11"
- name: Run DebugBuild
run: ./gradlew assembleDebug -i