588 - [FEATURE] serialize requests to JSON #20
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: Code Generation | |
on: [pull_request] | |
jobs: | |
up_to_date: | |
name: Ensure Generated Code Up To Date | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Java Client | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Run Code Generator | |
run: ./gradlew clean :java-codegen:run | |
- name: Check Has No Changes | |
shell: bash -eo pipefail {0} | |
run: | | |
output=$(git status --porcelain) | |
if [ -z "$output" ]; then | |
echo "Clean working directory" | |
exit 0 | |
else | |
echo "Dirty working directory" | |
echo "$output" | |
exit 1 | |
fi |