Fix logout endpoint StackOverflowError caused by Lombok #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI with Gradle | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run Checkstyle | |
run: ./gradlew checkstyleMain checkstyleTest | |
- name: Build with Gradle | |
run: ./gradlew build -x test | |
- name: Run tests | |
run: ./gradlew test | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-results | |
path: | | |
build/reports/tests/test/ | |
build/test-results/test/ | |
- name: Publish Checkstyle Results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: checkstyle-results | |
path: build/reports/checkstyle/ |