-
-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
arekkas
committed
May 20, 2018
1 parent
1969f64
commit 570783e
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -51,8 +51,8 @@ jobs: | |
- run: go install github.com/ory/keto | ||
|
||
# Tests | ||
- run: go-acc -o coverage.txt $(glide novendor) | ||
- run: go test -race -short $(glide novendor | grep -v cmd) | ||
- run: go-acc -o coverage.txt ./... | ||
- run: go test -race -short $(go list ./... | grep -v cmd) | ||
|
||
# Submit coverage details | ||
- run: goveralls -service=circle-ci -coverprofile=coverage.txt -repotoken=$COVERALLS_REPO_TOKEN | ||
|
@@ -106,7 +106,7 @@ jobs: | |
- run: git add CHANGELOG.md | ||
- run: git add README.md | ||
- run: | | ||
git commit -m "docs: Incorporates changes from version $(git describe --tags)" -- CHANGELOG.md | ||
git commit -a -m "docs: Incorporates changes from version $(git describe --tags)" | ||
- run: git remote rm origin | ||
- run: git remote add origin https://arekkas:[email protected]/ory/keto.git | ||
- run: git push origin HEAD:master | ||
|