Skip to content

sticky dials

sticky dials #1325

Workflow file for this run

name: build
on:
push:
branches:
- main
- release-*
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Install Ziti CI
uses: openziti/ziti-ci@v1
- name: Build and Test
run: |
cat release-notes.tmp > changelog.tmp
$(go env GOPATH)/bin/ziti-ci generate-build-info ziti/sdkinfo/build_info.go sdkinfo
go test ./...
go test -C example ./...
go install ./...
$(go env GOPATH)/bin/ziti-ci verify-version $($(go env GOPATH)/bin/sdk-version)