Skip to content

Bump github.com/pb33f/libopenapi from 0.18.6 to 0.18.7 #220

Bump github.com/pb33f/libopenapi from 0.18.6 to 0.18.7

Bump github.com/pb33f/libopenapi from 0.18.6 to 0.18.7 #220

Workflow file for this run

# Continuous integration handling for Go
name: ci-go
on:
pull_request:
paths:
- .github/workflows/ci-go.yml
- go.mod
- '**.go'
- 'internal/cmd/testdata/**'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
env:
GOPRIVATE: github.com/hashicorp/terraform-plugin-codegen-spec
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: 'go.mod'
- run: go mod download
- run: go test -coverprofile=coverage.out ./...
- run: go tool cover -html=coverage.out -o coverage.html
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: go-coverage
path: coverage.html