Skip to content

Commit 7679742

Browse files
authored
Merge pull request #133 from tendermint/release/v0.0.10-rc
Release/v0.0.10-rc
2 parents 37e152c + 0866e63 commit 7679742

File tree

135 files changed

+2902
-799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+2902
-799
lines changed

.github/CODEOWNERS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# CODEOWNERS: https://help.github.com/articles/about-codeowners/
2+
3+
# Primary repo maintainers
4+
* @fadeev @ilgooz

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Lint
33
# This workflow is run on every pull request and push to master
44
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
55
on:
6-
pull_request:
6+
# pull_request:
77
push:
88
branches:
99
- master

.github/workflows/test.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# run unit tests for Starport.
2+
name: Test
3+
4+
on:
5+
pull_request:
6+
push:
7+
branches:
8+
- master
9+
- develop
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-go@v2
16+
with:
17+
go-version: '1.14'
18+
- run: go test -v ./...

Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ mod:
66
build: mod
77
@go get -u github.com/gobuffalo/packr/v2/packr2
88
@packr2
9-
@go build -mod=readonly -o build/starport main.go
9+
@mkdir -p build/
10+
@go build -mod=readonly -o build/ ./starport/interface/cli/...
1011
@packr2 clean
1112
@go mod tidy
1213

1314
ui:
14-
@rm -rf ui/dist
15-
-@which npm 1>/dev/null && cd ui && npm install 1>/dev/null && npm run build 1>/dev/null
15+
@rm -rf starport/ui/dist
16+
-@which npm 1>/dev/null && cd starport/ui && npm install 1>/dev/null && npm run build 1>/dev/null
1617

1718
install: ui build
1819
@go install -mod=readonly ./...

cmd/add.go

-26
This file was deleted.

cmd/app.go

-47
This file was deleted.

cmd/root.go

-151
This file was deleted.

0 commit comments

Comments
 (0)