Skip to content

Restructure SDK Based on Go Project Conventions #50

Restructure SDK Based on Go Project Conventions

Restructure SDK Based on Go Project Conventions #50

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.18"
- name: Go Tidy
run: go mod tidy
- name: Go Mod
run: go mod download
- name: Go Mod Verify
run: go mod verify
- name: Run Tests
run: go test -v ./tests