-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from qri-io/release
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 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,40 @@ | ||
version: '2' | ||
jobs: | ||
build: | ||
working_directory: /go/src/github.com/qri-io/iso8601 | ||
docker: | ||
- image: circleci/golang:1.12 | ||
environment: | ||
TEST_RESULTS: /tmp/test-results | ||
GO111MODULE: "on" | ||
steps: | ||
- checkout | ||
- run: mkdir -p $TEST_RESULTS | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "go.sum" }} | ||
- run: | ||
name: Get CI Deps | ||
command: go get github.com/jstemmer/go-junit-report golang.org/x/lint/golint | ||
- run: | ||
name: Run Lint Tests | ||
command: golint -set_exit_status ./... | ||
- run: | ||
name: Go Vet | ||
command: go vet ./... | ||
- run: | ||
name: Run Tests | ||
command: | | ||
trap "go-junit-report <${TEST_RESULTS}/go-test.out > ${TEST_RESULTS}/go-test-report.xml" EXIT | ||
make test | tee ${TEST_RESULTS}/go-test.out | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "go.sum" }} | ||
paths: | ||
- /go/pkg/mod | ||
- run: | ||
name: Publish coverage info to codecov.io | ||
command: bash <(curl -s https://codecov.io/bash) | ||
- store_artifacts: | ||
path: /tmp/test-results | ||
destination: raw-test-output | ||
- store_test_results: | ||
path: /tmp/test-results |
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,12 @@ | ||
<a name="0.1.0"></a> | ||
# (2019-06-03) | ||
|
||
This is the first proper release of `iso8601`. In preparation for go 1.13, in which `go.mod` files and go modules are the primary way to handle go dependencies, we are going to do an official release of all our modules. This will be version v0.1.0 of `iso8601`. | ||
|
||
### Features | ||
|
||
* **string:** add String methods ([b3a4bf6](https://github.com/qri-io/iso8601/commit/b3a4bf6)) | ||
* initial iso8601 package ([4b2347c](https://github.com/qri-io/iso8601/commit/4b2347c)) | ||
|
||
|
||
|
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,6 @@ | ||
# Let's keep all our changelog commands the same across all our packages: | ||
update-changelog: | ||
conventional-changelog -p angular -i CHANGELOG.md -s | ||
|
||
test: | ||
go test -v --coverprofile=coverage.txt |