Skip to content

Adding Junit cases for CustomerController, updating saved cases, mino… #8

Adding Junit cases for CustomerController, updating saved cases, mino…

Adding Junit cases for CustomerController, updating saved cases, mino… #8

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Build unlogged-spring-gradle-demo
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle 8.5
uses: gradle/gradle-build-action@v2
with:
gradle-version: 8.5
- name: Execute Gradle build
run: gradle build