Skip to content

Update SDK to v0.1.0-beta5 (#315) #391

Update SDK to v0.1.0-beta5 (#315)

Update SDK to v0.1.0-beta5 (#315) #391

Workflow file for this run

name: build & test
on:
push:
branches:
- main
- '[0-9].[0-9]+'
paths:
- "**.go"
- .github/workflows/build-test.yml
- "go.mod"
- "go.sum"
- "docs/**"
- "examples/**"
pull_request:
branches:
- main
- '[0-9].[0-9]+'
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.x"
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: build
run: make build
- name: test
run: make test
- name: lint
run: sudo make lint