Skip to content

Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5 #366

Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5

Bump github.com/hashicorp/go-getter from 1.7.4 to 1.7.5 #366

Workflow file for this run

name: Go Tests
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.19
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Run tests with coverage
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4