Skip to content

Build and Test app module #8

Build and Test app module

Build and Test app module #8

name: Build and Test app module
on:
push:
branches:
- main
paths:
- app/**
workflow_dispatch:
jobs:
java_version:
name: Use Java
runs-on: ubuntu-latest
# Runs only when commit message startsWith 'Update'
# if: startsWith(github.event.head_commit.message, 'Update')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Must be used to trigger workflow after push
token: ${{ secrets.ACCESS_TOKEN }}
- name: Setup Java
uses: actions/setup-java@v4.2.1
with:
java-version: 17
# Print Hello, world!
- name: Run a one-line script
run: echo Hello, world!
# Print Java compiler version
- name: Print Java
run: javac -version
- name: Run Debug Tests
run: ./gradlew :app:testDebugUnitTest