Skip to content

feat!: Release autogenerated SDK #590

feat!: Release autogenerated SDK

feat!: Release autogenerated SDK #590

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 'stable'
- 'oldstable'
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-go@7b8cf10d4e4a01d4992d18a89f4d7dc5a3e6d6f4 # v4.3.0
with:
go-version: ${{ matrix.go }}
- name: Build
run: |
go mod download
go build ./...
- name: Run Tests
run: |
go test -v ./...