Skip to content

Commit dd0da03

Browse files
authored
Activity support (#161)
1 parent 83bea60 commit dd0da03

File tree

105 files changed

+7190
-1048
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+7190
-1048
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
build-lint-test:
1111
strategy:
12-
fail-fast: true
12+
fail-fast: false
1313
matrix:
1414
# TODO(cretz): Enable Windows (it's slow)
1515
#
@@ -75,12 +75,12 @@ jobs:
7575
working-directory: ./temporalio
7676
run: bundle install
7777

78-
- name: Check generated protos
78+
- name: Check generated code unchanged
7979
if: ${{ matrix.checkTarget }}
80-
working-directory: ./temporalio
8180
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)
81+
npx doctoc README.md
82+
cd temporalio && bundle exec rake proto:generate
83+
git diff --exit-code
8484
8585
- name: Lint, compile, test Ruby
8686
working-directory: ./temporalio

0 commit comments

Comments
 (0)