Skip to content

Validate the Github Actions workflow script #1

Validate the Github Actions workflow script

Validate the Github Actions workflow script #1

Workflow file for this run

name: Run test
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: gradle
- name: Grant execute permissions for gradlew
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew clean testDebug