Skip to content

Adding Pipeline to Test GO SDK #1

Adding Pipeline to Test GO SDK

Adding Pipeline to Test GO SDK #1

Workflow file for this run

name: Go SDK
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: '1.15.x'
- name: Run Tests
run:
go fmt ./...
go clean -testcache
go test ./...