Skip to content

Bump github.com/hashicorp/raft from 1.6.0 to 1.7.0 #71

Bump github.com/hashicorp/raft from 1.6.0 to 1.7.0

Bump github.com/hashicorp/raft from 1.6.0 to 1.7.0 #71

Workflow file for this run

name: ci
on:
pull_request:
branches: ["master"]
push:
branches: ["master"]
tags: ["*"]
jobs:
go-fmt-and-vet:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # [email protected]
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # [email protected]
with:
go-version-file: 'go.mod'
cache: true
- run: |
files=$(go fmt ./...)
if [ -n "$files" ]; then
echo "The following file(s) do not conform to go fmt:"
echo "$files"
exit 1
fi
- run: go vet ./...
go-test:
needs: go-fmt-and-vet
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # [email protected]
- uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # [email protected]
with:
go-version-file: 'go.mod'
cache: true
- run: go test -race ./...