Skip to content

Bump github.com/pb33f/libopenapi from 0.19.1 to 0.20.0 #234

Bump github.com/pb33f/libopenapi from 0.19.1 to 0.20.0

Bump github.com/pb33f/libopenapi from 0.19.1 to 0.20.0 #234

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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.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@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
with:
name: go-coverage
path: coverage.html