Skip to content

Commit

Permalink
squahs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
youyuanwu committed Jul 22, 2023
1 parent 82e6077 commit 3c412bc
Show file tree
Hide file tree
Showing 5 changed files with 89 additions and 165 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18

- name: Setup gotestsum
uses: autero1/action-gotestsum@v1.0.0
Expand Down
32 changes: 0 additions & 32 deletions appveyor.yml

This file was deleted.

5 changes: 1 addition & 4 deletions fixtures/validation/fixture-1171.yaml
Expand Up @@ -58,10 +58,7 @@ paths:
responses:
'200':
schema:
# $ref may not have sibling
properties:
name: sibling
$ref: '#/definitions/Zones'
$ref: '#/definitions/Zones'

'/servers/{server_id}/zones/{zone_id}':
get:
Expand Down
34 changes: 15 additions & 19 deletions go.mod
Expand Up @@ -3,31 +3,27 @@ module github.com/go-openapi/validate
go 1.18

require (
github.com/go-openapi/analysis v0.21.2
github.com/go-openapi/errors v0.19.9
github.com/go-openapi/jsonpointer v0.19.5
github.com/go-openapi/loads v0.21.1
github.com/go-openapi/spec v0.20.4
github.com/go-openapi/strfmt v0.21.1
github.com/go-openapi/swag v0.21.1
github.com/stretchr/testify v1.7.0
github.com/go-openapi/analysis v0.21.4
github.com/go-openapi/errors v0.20.4
github.com/go-openapi/jsonpointer v0.20.0
github.com/go-openapi/loads v0.21.2
github.com/go-openapi/spec v0.20.9
github.com/go-openapi/strfmt v0.21.7
github.com/go-openapi/swag v0.22.4
github.com/stretchr/testify v1.8.4
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-openapi/jsonreference v0.19.6 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.mongodb.org/mongo-driver v1.7.5 // indirect
golang.org/x/net v0.0.0-20210421230115-4e50805a0758 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
go.mongodb.org/mongo-driver v1.12.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit 3c412bc

Please sign in to comment.