Skip to content

Commit

Permalink
Merge pull request #133 from tendermint/release/v0.0.10-rc
Browse files Browse the repository at this point in the history
Release/v0.0.10-rc
  • Loading branch information
ilgooz authored Aug 7, 2020
2 parents 37e152c + 0866e63 commit 7679742
Show file tree
Hide file tree
Showing 135 changed files with 2,902 additions and 799 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# CODEOWNERS: https://help.github.com/articles/about-codeowners/

# Primary repo maintainers
* @fadeev @ilgooz
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Lint
# This workflow is run on every pull request and push to master
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
# pull_request:
push:
branches:
- master
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# run unit tests for Starport.
name: Test

on:
pull_request:
push:
branches:
- master
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.14'
- run: go test -v ./...
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ mod:
build: mod
@go get -u github.com/gobuffalo/packr/v2/packr2
@packr2
@go build -mod=readonly -o build/starport main.go
@mkdir -p build/
@go build -mod=readonly -o build/ ./starport/interface/cli/...
@packr2 clean
@go mod tidy

ui:
@rm -rf ui/dist
-@which npm 1>/dev/null && cd ui && npm install 1>/dev/null && npm run build 1>/dev/null
@rm -rf starport/ui/dist
-@which npm 1>/dev/null && cd starport/ui && npm install 1>/dev/null && npm run build 1>/dev/null

install: ui build
@go install -mod=readonly ./...
Expand Down
26 changes: 0 additions & 26 deletions cmd/add.go

This file was deleted.

47 changes: 0 additions & 47 deletions cmd/app.go

This file was deleted.

151 changes: 0 additions & 151 deletions cmd/root.go

This file was deleted.

Loading

0 comments on commit 7679742

Please sign in to comment.