Skip to content

Commit

Permalink
doc: readme: remove commentized appveyor badge
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Nov 23, 2020
1 parent b9e048c commit 48adff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# genr

[![Travis](https://travis-ci.com/openacid/genr.svg?branch=main)](https://travis-ci.com/openacid/genr)
<!-- [![AppVeyor](https://ci.appveyor.com/api/projects/status/m0vvvrru7a1g4mae/branch/main?svg=true)](https://ci.appveyor.com/project/drmingdrmer/genr/branch/main) -->
![test](https://github.com/openacid/genr/workflows/test/badge.svg)

[![Report card](https://goreportcard.com/badge/github.com/openacid/genr)](https://goreportcard.com/report/github.com/openacid/genr)
Expand Down Expand Up @@ -67,7 +66,7 @@ func main() {
genr.NewIntConfig("I64", "int64"),
}

genr.Render(implfn, implHead, implTemplate, impls, []string{"gofmt"})
genr.Render(implfn, implHead, implTemplate, impls, []string{"gofmt", "unconvert"})

}

Expand All @@ -76,6 +75,8 @@ func main() {
The generated codes looks like the following:

```go
// Code generated 'by go generate ./...'; DO NOT EDIT.

package intarray

import (
Expand All @@ -95,7 +96,7 @@ func NewU16(elts []uint16) (a *U16, err error) {
first: make([]byte, 0),
}

binary.LittleEndian.PutUint16(a.first, uint16(elts[0]))
binary.LittleEndian.PutUint16(a.first, elts[0])
return a, nil
}

Expand Down
1 change: 0 additions & 1 deletion docs/badges.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Travis](https://travis-ci.com/openacid/{{ name }}.svg?branch=main)](https://travis-ci.com/openacid/{{ name }})
<!-- [![AppVeyor](https://ci.appveyor.com/api/projects/status/m0vvvrru7a1g4mae/branch/main?svg=true)](https://ci.appveyor.com/project/drmingdrmer/{{ name }}/branch/main) -->
![test](https://github.com/openacid/{{ name }}/workflows/test/badge.svg)

[![Report card](https://goreportcard.com/badge/github.com/openacid/{{ name }})](https://goreportcard.com/report/github.com/openacid/{{ name }})
Expand Down

0 comments on commit 48adff8

Please sign in to comment.