Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

"No articles yet" no longer centered #311

"No articles yet" no longer centered

"No articles yet" no longer centered #311

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 and Test Java Spring Boot Application
on:
# Events that will trigger this test
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
# system to run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew build