Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
fix typo in entrypoint.sh and integration-test.yml
  • Loading branch information
jekiapp committed Feb 2, 2022
1 parent f410784 commit dfe4706
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Run stub subfolders example
uses: ./
with:
entrypoint: example/stub-subfulders/entrypoint.sh
entrypoint: example/stub-subfolders/entrypoint.sh
- name: Run no go_package example
uses: ./
with:
Expand Down
11 changes: 5 additions & 6 deletions example/no-gopackage/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

# this file is used by .github/workflows/integration-test.yml

# we need to add example/multi-package ar as included import path
# without it protoc could not find the bar/bar.proto
gripmock --stub=example/multi-package/stub --imports=example/multi-package/ \
example/multi-package/foo.proto example/multi-package/hello.proto \
example/multi-package/bar/bar.proto &
gripmock --stub=example/no-gopackage/stub \
example/no-gopackage/foo.proto example/no-gopackage/hello.proto \
example/no-gopackage/bar/bar.proto \
example/no-gopackage/bar/deep/bar.proto &

# wait for generated files to be available and gripmock is up
sleep 2

go run example/multi-package/client/*.go
go run example/no-gopackage/client/*.go

0 comments on commit dfe4706

Please sign in to comment.