We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8118118 commit 7beadf5Copy full SHA for 7beadf5
.github/workflows/ci.yml
@@ -75,12 +75,12 @@ jobs:
75
working-directory: ./temporalio
76
run: bundle install
77
78
- - name: Check generated protos
+ - name: Check generated code unchanged
79
if: ${{ matrix.checkTarget }}
80
- working-directory: ./temporalio
81
run: |
82
- bundle exec rake proto:generate
83
- [[ -z $(git status --porcelain lib/temporalio/api) ]] || (git diff lib/temporalio/api; echo "Protos changed" 1>&2; exit 1)
+ npx doctoc README.md
+ cd temporalio && bundle exec rake proto:generate
+ git diff --exit-code
84
85
- name: Lint, compile, test Ruby
86
0 commit comments