Skip to content

Merge pull request #15 from rColeJnr/auth_ui_design #26

Merge pull request #15 from rColeJnr/auth_ui_design

Merge pull request #15 from rColeJnr/auth_ui_design #26

Workflow file for this run

name: Run test

Check failure on line 1 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yml

Invalid workflow file

(Line: 14, Col: 9): There's not enough info to determine what you meant. Add one of these properties: cancel, run, shell, uses, wait, wait-all, with, working-directory
on:
pull_request:
branches: [master]
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