Skip to content

Generated beta models and request builders (#414) #848

Generated beta models and request builders (#414)

Generated beta models and request builders (#414) #848

Workflow file for this run

name: Go CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
relativePath: ./
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: '^1.20'
- name: Install dependencies
run: go install
working-directory: ${{ env.relativePath }}
- name: Build SDK project
run: go build
working-directory: ${{ env.relativePath }}
- name: Run unit tests
run: go test
working-directory: tests