Skip to content

ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6 (#78) #88

ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6 (#78)

ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6 (#78) #88

Workflow file for this run

name: Go CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Build the test cli
run: go build -o cli ./.ci
test:
name: 'Acc. Tests (OS: ${{ matrix.os }})'
needs: build
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Run acceptance test
run: make testacc