Skip to content

feat(gateway): add UUID support for connections and tunnels #450

feat(gateway): add UUID support for connections and tunnels

feat(gateway): add UUID support for connections and tunnels #450

Workflow file for this run

name: Upcloud go api test
on:
pull_request:
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
# support two latest major versions of Go, following the Go security policy
# in which these versions get security updates. See https://golang.org/security
go-version: [1.21.x, 1.22.x]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go-version }}
- name: test
env:
UPCLOUD_GO_SDK_TEST_NO_CREDENTIALS: yes
UPCLOUD_GO_SDK_TEST_DELETE_RESOURCES: yes
UPCLOUD_GO_SDK_TEST_USER: ${{ secrets.UPCLOUD_GO_SDK_TEST_USER }}
UPCLOUD_GO_SDK_TEST_PASSWORD: ${{ secrets.UPCLOUD_GO_SDK_TEST_PASSWORD }}
run: go test ./... -parallel 1 -timeout 60m