Skip to content

add Java installation instructions for Windows #1413

add Java installation instructions for Windows

add Java installation instructions for Windows #1413

Workflow file for this run

name: Build Go SDK
on:
push:
branches:
- main
- rc
- hotfix-rc
pull_request:
env:
GO111MODULE: on
GO_VERSION: "^1.21"
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Go environment
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ env.GO_VERSION }}
- name: Cache dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: npm ci
run: npm ci
- name: Generate schemas
run: npm run schemas
- name: Build
working-directory: languages/go
run: go build -v ./...
- name: Test
working-directory: languages/go
run: go test -v ./...