Skip to content

Commit ca4764c

Browse files
committed
Refer to go tour
1 parent 530bf98 commit ca4764c

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
typescript-deno-hello-world.zip
3535
go-hello-world.zip
3636
kotlin-hello-world-lambda-cdk.zip
37+
go-tour-of-restate.zip
3738
java-tour-of-restate.zip
3839
typescript-tour-of-restate.zip
3940
typescript-ticket-reservation.zip

.tools/prepare_release_zip.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ create_release_zip templates/typescript-lambda-cdk typescript-hello-world-lambda
2828
create_release_zip templates/kotlin-gradle-lambda-cdk kotlin-hello-world-lambda-cdk
2929
create_release_zip templates/python python-hello-world
3030

31+
create_release_zip tutorials/tour-of-restate-go go-tour-of-restate
3132
create_release_zip tutorials/tour-of-restate-java java-tour-of-restate
3233
create_release_zip tutorials/tour-of-restate-typescript typescript-tour-of-restate
3334

.tools/run_go_tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ PROJECT_ROOT="$(dirname "$SELF_PATH")/.."
55

66
function go_build_check() {
77
pushd $1
8-
go build -o /dev/null .
8+
go build -o /dev/null ./...
99
go vet ./...
1010
popd
1111
}
1212

1313
go_build_check $PROJECT_ROOT/templates/go
14+
go_build_check $PROJECT_ROOT/tutorials/tour-of-restate-go

.tools/update_go_examples.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ function bump_go_sdk() {
1212
}
1313

1414
bump_go_sdk $PROJECT_ROOT/templates/go
15+
bump_go_sdk $PROJECT_ROOT/tutorials/tour-of-restate-go

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ challenges.
7777
| Templates | [Python Template](templates/python) |
7878
| Use Cases | [Ticket reservation](patterns-use-cases/ticket-reservation/ticket-reservation-python) |
7979

80+
### Go
81+
82+
| Type | Name / Link |
83+
|-----------|-------------------------------------------------|
84+
| Templates | [Go Template](templates/go) |
85+
| Tutorial | [Tour of Restate](tutorials/tour-of-restate-go) |
86+
8087
## Joining the community
8188

8289
If you want to join the Restate community in order to stay up to date, then please join our [Discord](https://discord.gg/skW3AZ6uGd).

0 commit comments

Comments
 (0)