File tree 5 files changed +30
-11
lines changed
5 files changed +30
-11
lines changed Original file line number Diff line number Diff line change
1
+ on : [push, pull_request]
2
+ name : Test
3
+ jobs :
4
+ test :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - name : Install Go
8
+ uses : actions/setup-go@v1
9
+ with :
10
+ go-version : 1.14.x
11
+ - name : Checkout code
12
+ uses : actions/checkout@v2
13
+ - name : Test
14
+ run : go test ./...
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- go-jsonschema-generator [ ![ Build Status] ( https://travis-ci.org/ mcuadros/go-jsonschema-generator.png?branch=master )] ( https://travis-ci.org /mcuadros/go-jsonschema-generator ) [ ![ GoDoc] ( http://godoc.org/github.com/mcuadros/go-jsonschema-generator?status.png )] ( http ://godoc.org /github.com/mcuadros/go-jsonschema-generator)
1
+ go-jsonschema-generator [ ![ Build Status] ( https://img.shields.io/github/workflow/status/ mcuadros/go-jsonschema-generator/Test.svg )] ( https://github.com /mcuadros/go-jsonschema-generator/actions ) [ ![ GoDoc] ( http://godoc.org/github.com/mcuadros/go-jsonschema-generator?status.png )] ( https ://pkg.go.dev /github.com/mcuadros/go-jsonschema-generator)
2
2
==============================
3
3
4
4
Basic [ json-schema] ( http://json-schema.org/ ) generator based on Go types, for easy interchange of Go structures across languages.
Original file line number Diff line number Diff line change
1
+ module github.com/mcuadros/go-jsonschema-generator
2
+
3
+ go 1.14
4
+
5
+ require (
6
+ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
7
+ gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
8
+ )
Original file line number Diff line number Diff line change
1
+ github.com/kr/pty v1.1.1 /go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ =
2
+ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE =
3
+ github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
4
+ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs =
5
+ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e /go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno =
6
+ gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU =
7
+ gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
You can’t perform that action at this time.
0 commit comments