Fix issue If there are enumerations in the query request parameters, the generated request parameter comments will not include 'See'. #238
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: Spring Java Format Validate | |
on: [push, pull_request] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Execute Spring Java Format Validation | |
id: format-validation | |
run: | | |
echo "Executing Spring code format validation" | |
mvn spring-javaformat:validate |