Skip to content

Adding Pipeline to Test GO SDK #3

Adding Pipeline to Test GO SDK

Adding Pipeline to Test GO SDK #3

Workflow file for this run

name: Go SDK
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
- name: Run Tests
run:
go mod download github.com/go-resty/resty/v2
go fmt ./...
go clean -testcache
go test ./...