Skip to content

Commit

Permalink
Add workflow to ensure generated code is up to date
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed Jul 1, 2024
1 parent ba96bdd commit c294efd
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/code-generation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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@v3

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'gradle'

- name: Run Code Generator
run: ./gradlew clean :java-codegen:run

- name: Check Has No Changes
shell: base -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

0 comments on commit c294efd

Please sign in to comment.