Skip to content

build(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.17.0 #71

build(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.17.0

build(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.17.0 #71

Workflow file for this run

# Continuous integration handling for Go
name: ci-go
on:
pull_request:
paths:
- .github/workflows/ci-go.yml
- .golangci.yml
- go.mod
- '**.go'
permissions:
contents: read
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: go mod download
- uses: golangci/golangci-lint-action@v3
test:
name: test (Go v${{ matrix.go-version }})
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go mod download
- run: go test -coverprofile=coverage.out ./...
- run: go tool cover -html=coverage.out -o coverage.html
- uses: actions/upload-artifact@v4
with:
name: go-${{ matrix.go-version }}-coverage
path: coverage.html