-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
77 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
on: | ||
push: | ||
pull_request: | ||
types: [synchronize] | ||
schedule: | ||
- cron: "0 0 1,11,21 * *" | ||
name: "Build and Test" | ||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: | ||
- 1.13.x | ||
- 1.14.x | ||
- 1.15.x | ||
- 1.16.x | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Test | ||
run: go test ./... | ||
- name: Test coverage | ||
run: go test -coverprofile="cover.out" ./... # quotes needed for powershell | ||
- name: Send coverage | ||
uses: shogo82148/actions-goveralls@v1 | ||
with: | ||
path-to-profile: cover.out | ||
flag-name: go${{ matrix.go-version }}-${{ matrix.os }} | ||
parallel: true | ||
# notifies that all test jobs are finished. | ||
finish: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: shogo82148/actions-goveralls@v1 | ||
with: | ||
parallel-finished: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
[![GoDoc](https://godoc.org/github.com/go-logfmt/logfmt?status.svg)](https://godoc.org/github.com/go-logfmt/logfmt) | ||
[![Go Report Card](https://goreportcard.com/badge/go-logfmt/logfmt)](https://goreportcard.com/report/go-logfmt/logfmt) | ||
[![TravisCI](https://travis-ci.org/go-logfmt/logfmt.svg?branch=master)](https://travis-ci.org/go-logfmt/logfmt) | ||
[![Coverage Status](https://coveralls.io/repos/github/go-logfmt/logfmt/badge.svg?branch=master)](https://coveralls.io/github/go-logfmt/logfmt?branch=master) | ||
|
||
# logfmt | ||
|
||
Package logfmt implements utilities to marshal and unmarshal data in the [logfmt | ||
format](https://brandur.org/logfmt). It provides an API similar to | ||
[encoding/json](http://golang.org/pkg/encoding/json/) and | ||
[encoding/xml](http://golang.org/pkg/encoding/xml/). | ||
|
||
The logfmt format was first documented by Brandur Leach in [this | ||
article](https://brandur.org/logfmt). The format has not been formally | ||
standardized. The most authoritative public specification to date has been the | ||
documentation of a Go Language [package](http://godoc.org/github.com/kr/logfmt) | ||
written by Blake Mizerany and Keith Rarick. | ||
|
||
## Goals | ||
|
||
This project attempts to conform as closely as possible to the prior art, while | ||
also removing ambiguity where necessary to provide well behaved encoder and | ||
decoder implementations. | ||
|
||
## Non-goals | ||
|
||
This project does not attempt to formally standardize the logfmt format. In the | ||
event that logfmt is standardized this project would take conforming to the | ||
standard as a goal. | ||
|
||
## Versioning | ||
|
||
Package logfmt publishes releases via [semver](http://semver.org/) compatible Git tags prefixed with a single 'v'. | ||
[![Go Reference](https://pkg.go.dev/badge/github.com/go-logfmt/logfmt.svg)](https://pkg.go.dev/github.com/go-logfmt/logfmt) | ||
[![Go Report Card](https://goreportcard.com/badge/go-logfmt/logfmt)](https://goreportcard.com/report/go-logfmt/logfmt) | ||
[![Github Actions](https://github.com/go-logfmt/logfmt/actions/workflows/test.yml/badge.svg)](https://github.com/go-logfmt/logfmt/actions/workflows/test.yml) | ||
[![Coverage Status](https://coveralls.io/repos/github/go-logfmt/logfmt/badge.svg?branch=master)](https://coveralls.io/github/go-logfmt/logfmt?branch=master) | ||
|
||
# logfmt | ||
|
||
Package logfmt implements utilities to marshal and unmarshal data in the [logfmt | ||
format](https://brandur.org/logfmt). It provides an API similar to | ||
[encoding/json](http://golang.org/pkg/encoding/json/) and | ||
[encoding/xml](http://golang.org/pkg/encoding/xml/). | ||
|
||
The logfmt format was first documented by Brandur Leach in [this | ||
article](https://brandur.org/logfmt). The format has not been formally | ||
standardized. The most authoritative public specification to date has been the | ||
documentation of a Go Language [package](http://godoc.org/github.com/kr/logfmt) | ||
written by Blake Mizerany and Keith Rarick. | ||
|
||
## Goals | ||
|
||
This project attempts to conform as closely as possible to the prior art, while | ||
also removing ambiguity where necessary to provide well behaved encoder and | ||
decoder implementations. | ||
|
||
## Non-goals | ||
|
||
This project does not attempt to formally standardize the logfmt format. In the | ||
event that logfmt is standardized this project would take conforming to the | ||
standard as a goal. | ||
|
||
## Versioning | ||
|
||
Package logfmt publishes releases via [semver](http://semver.org/) compatible Git tags prefixed with a single 'v'. |