Evgenii Stratonikov
d36120014d
Make it easier to maintain auto-generated code in the actual state. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
22 lines
680 B
YAML
22 lines
680 B
YAML
name: Code generation
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
wrappers:
|
|
name: Generate wrappers
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.23'
|
|
- name: Generate wrappers
|
|
run: make generate-wrappers
|
|
# The command seems to be non-deterministic.
|
|
# However, with >20 runs I haven't been able to reproduce the issue.
|
|
# This `git diff` is here to print diff in case we catch the behaviour again.
|
|
- name: Print diff
|
|
run: git diff HEAD
|
|
- name: Check that nothing has changed
|
|
run: git diff-index --exit-code HEAD
|