Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

Commit

Permalink
Improve CI and README
Browse files Browse the repository at this point in the history
  • Loading branch information
FossoresLP committed Jul 8, 2018
1 parent 05229e5 commit af63f97
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
13 changes: 9 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
- image: circleci/golang:latest
working_directory: /go/src/github.com/fossoreslp/go-uuid-v4
steps:
- checkout
- run: go get
- run: go get -u github.com/jstemmer/go-junit-report
- run: go get -u github.com/mattn/goveralls
- run: mkdir test-results
- run:
name: Run unit tests
command: go test
command: go test -v 2>&1 | go-junit-report > test-results/report.xml
- run:
name: Coverage
command: go test -cover
command: goveralls -show -service=circle-ci
- run:
name: go vet
command: go vet
command: go vet
- store_test_results:
path: test-results
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
Go UUIDv4
=========

[![CircleCI branch](https://img.shields.io/circleci/project/github/FossoresLP/go-uuid-v4/master.svg?style=flat-square)](https://circleci.com/gh/FossoresLP/go-uuid-v4)
[![CircleCI](https://img.shields.io/circleci/project/github/FossoresLP/go-uuid-v4/master.svg?style=flat-square)](https://circleci.com/gh/FossoresLP/go-uuid-v4)
[![Coveralls](https://img.shields.io/coveralls/github/FossoresLP/go-uuid-v4/master.svg?style=flat-square)](https://coveralls.io/github/FossoresLP/go-uuid-v4)
[![Codacy](https://img.shields.io/codacy/grade/146eef6b23314b74a0a3a47d106a388d.svg?style=flat-square)](https://www.codacy.com/app/FossoresLP/go-uuid-v4)
[![Licensed under: Boost Software License](https://img.shields.io/badge/style-BSL--1.0-red.svg?longCache=true&style=flat-square&label=License)](https://github.com/FossoresLP/go-uuid-v4/blob/master/LICENSE.md)
[![GoDoc](https://img.shields.io/badge/style-reference-blue.svg?longCache=true&style=flat-square&label=GoDoc)](https://godoc.org/github.com/FossoresLP/go-uuid-v4)

This package contains a *minimal* implementation of UUIDv4 in Go.

Expand Down

0 comments on commit af63f97

Please sign in to comment.