Skip to content

Bump github.com/hashicorp/consul/sdk from 0.13.0 to 0.14.0 #163

Bump github.com/hashicorp/consul/sdk from 0.13.0 to 0.14.0

Bump github.com/hashicorp/consul/sdk from 0.13.0 to 0.14.0 #163

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
run-tests:
name: Run test cases
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
go: [^1]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install Consul and Vault for integration testing
run: |
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update && sudo apt-get install consul vault nomad
- name: Run tests
run: |
go test -race ./...