Skip to content

Bump github.com/pb33f/libopenapi from 0.21.8 to 0.27.2 #285

Bump github.com/pb33f/libopenapi from 0.21.8 to 0.27.2

Bump github.com/pb33f/libopenapi from 0.21.8 to 0.27.2 #285

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: go-coverage
path: coverage.html