Skip to content

CleanUp Application Properties #295

CleanUp Application Properties

CleanUp Application Properties #295

Workflow file for this run

name: SeeYouAgain-Spring CI with Gradle
on:
push:
branches:
- master
- develop
pull_request:
branches:
- feature/*
- refactor/*
- fix/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash
- name: Build with Gradle
run: ./gradlew clean build
shell: bash