-
Notifications
You must be signed in to change notification settings - Fork 49
49 lines (39 loc) · 1.05 KB
/
build-go.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build Go SDK
on:
push:
branches:
- main
- rc
- hotfix-rc
pull_request:
env:
GO111MODULE: on
GO_VERSION: "^1.18"
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Go environment
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Cache dependencies
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
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 ./...