Skip to content
This repository has been archived by the owner on Aug 9, 2018. It is now read-only.

Reader prepare #22

Closed
wants to merge 4 commits into from
Closed
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ go:
- 1.5

script:
- go get -v ./...
- go test -race -cpu 5 ./...

sudo: false #docker containers for CI
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.PHONY: test
test:
go test ./...

5 changes: 5 additions & 0 deletions coding/bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/convert
/json2cbor
/msgio
/multicodec

2 changes: 1 addition & 1 deletion coding/coding.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ipfsld
package coding

import (
mc "github.com/jbenet/go-multicodec"
Expand Down
2 changes: 1 addition & 1 deletion coding/coding_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ipfsld
package coding

import (
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion coding/transform.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ipfsld
package coding

import (
"io"
Expand Down