Skip to content

feat: gradle workflow #10

feat: gradle workflow

feat: gradle workflow #10

Workflow file for this run

name: Java Gradle Build and Test
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'corretto'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3
- name: Build with Gradle
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629
with:
arguments:
- build

Check failure on line 34 in .github/workflows/gradle.yml

View workflow run for this annotation

GitHub Actions / Java Gradle Build and Test

Invalid workflow file

The workflow is not valid. .github/workflows/gradle.yml (Line: 34, Col: 13): A sequence was not expected
- test