Skip to content

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #148

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0

Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #148

Workflow file for this run

name: go-test
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
consul:
image: consul:1.12.2
env:
CONSUL_BIND_INTERFACE: eth0
ports:
- 8500:8500/tcp
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v2
- name: Run build
run: go build .
- name: Run vet
run: |
go vet .
- name: Run testing
run: go test ./... -v