-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reversing the repository organization (#26)
* reorganizing the repository * makefile test update * go mod tidy * make fix
- Loading branch information
1 parent
5b27dd1
commit c4c920e
Showing
31 changed files
with
818 additions
and
412 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.PHONY: ci | ||
ci: | ||
$(MAKE) -C test ci | ||
$(MAKE) -C contracts ci | ||
$(MAKE) -C lib/go/contracts ci | ||
$(MAKE) -C lib/go/test ci | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -11,4 +11,4 @@ check-generated: | |
git diff --exit-code | ||
|
||
.PHONY: ci | ||
ci: generate check-generated test | ||
ci: generate test |
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
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
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 @@ | ||
module github.com/onflow/flow-ft/lib/go/contracts | ||
|
||
go 1.14 | ||
|
||
require ( | ||
github.com/kevinburke/go-bindata v3.21.0+incompatible // indirect | ||
github.com/onflow/flow-ft/contracts v0.1.3 | ||
github.com/onflow/flow-go-sdk v0.4.0 | ||
github.com/stretchr/testify v1.5.1 | ||
) | ||
|
||
replace github.com/onflow/flow-ft/lib/go/contracts => ../contracts |
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
29 changes: 3 additions & 26 deletions
29
contracts/internal/assets/assets.go → lib/go/contracts/internal/assets/assets.go
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.PHONY: test | ||
test: | ||
go test ./... | ||
|
||
.PHONY: generate | ||
generate: | ||
go generate | ||
|
||
.PHONY: check-generated | ||
check-generated: | ||
git diff --exit-code | ||
|
||
.PHONY: ci | ||
ci: generate check-generated test |
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
Oops, something went wrong.