Skip to content

Commit 35b219d

Browse files
committed
init issues project
1 parent 24184e0 commit 35b219d

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: go
2+
3+
sudo: false
4+
5+
go: master
6+
7+
before_install:
8+
- go get github.com/WindomZ/testify/assert
9+
- go get github.com/mattn/goveralls
10+
11+
script:
12+
# - go test -v ./... -covermode=count -coverprofile=coverage.out
13+
- $(go env GOPATH | awk 'BEGIN{FS=":"} {print $1}')/bin/goveralls -service=travis-ci
14+
- go test -v ./...

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1-
# leetcode
1+
# leetcode.go
22

3-
> Just starting
3+
> Issues from my solutions(Golang) of problems in https://leetcode.com/
4+
5+
[![Build Status](https://travis-ci.org/WindomZ/leetcode.go.svg?branch=issues)](https://travis-ci.org/WindomZ/leetcode.go)
6+
[![Coverage Status](https://coveralls.io/repos/github/WindomZ/leetcode.go/badge.svg?branch=issues)](https://coveralls.io/github/WindomZ/leetcode.go?branch=issues)
7+
8+
## Testing
9+
10+
```bash
11+
git clone -b issues https://github.com/WindomZ/leetcode.go "$YOUR_PROJECT_PATH"
12+
cd "$YOUR_PROJECT_PATH"
13+
go test -v ./...
14+
```
15+
16+
## Contributing
17+
18+
### Discuss
19+
Welcome to discuss on [issues page](https://github.com/WindomZ/leetcode.go/issues).
20+
21+
### Support
22+
If you like it then you can put a :star: on it.

0 commit comments

Comments
 (0)