Skip to content

* fixed a bug in statusupdater: {EdgeId} wasn't correctly expanded be… #78

* fixed a bug in statusupdater: {EdgeId} wasn't correctly expanded be…

* fixed a bug in statusupdater: {EdgeId} wasn't correctly expanded be… #78

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22.3']
steps:
- uses: actions/checkout@v4
- name: Clone private module
uses: actions/checkout@v4
with:
repository: dnstapir/tapir
ssh-key: ${{ secrets.TAPIR_REPO_SSH_PRIVATE_KEY }}
path: tapir
- name: Update path to private module
run: sed -i.old "s,\.\./tapir,./tapir,g" go.mod
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install dependencies
run: go mod download
- name: Make version
run: make version.go
- name: Vet
run: go vet -v
- name: Test
run: go test -v
- name: Build
run: go build -v