Skip to content

Initial release of the Go SDK #10

Initial release of the Go SDK

Initial release of the Go SDK #10

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
env:
GOVERSION: 1.22.3
jobs:
lint:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
- uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
args: --timeout 4m
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
- run: go test -cover ./...