Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update template build trigger and fix godoc lint warning #3

Merged
merged 1 commit into from
Feb 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CI
on: ["pull_request"]
on: ["push", "pull_request"]
env:
GO111MODULE: on

Expand All @@ -9,10 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.12
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.12
go-version: 1.13
- run: go env

- name: Check out code into the Go module directory
uses: actions/checkout@v1
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

[![CI](https://github.com/Shivam010/go-tmpl/workflows/CI/badge.svg)](https://github.com/Shivam010/go-tmpl/actions)
[![Coverage Status](https://coveralls.io/repos/github/Shivam010/go-tmpl/badge.svg)](https://coveralls.io/github/Shivam010/go-tmpl)
[![Go Report Card](https://goreportcard.com/badge/github.com/Shivam010/go-tmpl?dropcache)](https://goreportcard.com/report/github.com/Shivam010/go-tmpl)
[![GoDoc](https://godoc.org/github.com/Shivam010/go-tmpl?status.svg)](https://godoc.org/github.com/Shivam010/go-tmpl)
[![License](https://img.shields.io/badge/license-apache2-mildgreen.svg)](https://github.com/Shivam010/go-tmpl/blob/master/LICENSE)

`go-tmpl` repository let users generate new repositories with the simplest
structure for any Golang project.
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// Package `tmpl` is the template repository for any Golang project, that
// Package tmpl is the template repository for any Golang project, that
// can be used to generate new project with a simplest file structure, along
// with a build workflow and code of conducts & guidelines, a make utility
// file, a license and a readme. The Package is initialised with go modules,
Expand Down