Skip to content

Commit

Permalink
Rename to omio-labs/myke
Browse files Browse the repository at this point in the history
  • Loading branch information
rdsubhas committed Nov 6, 2019
1 parent 008abff commit 50bb401
Show file tree
Hide file tree
Showing 24 changed files with 32 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: go
go_import_path: github.com/goeuro/myke
go_import_path: github.com/omio-labs/myke
go:
- 1.11
env:
Expand All @@ -8,7 +8,7 @@ script:
- gofmt -d -s -e . 2>&1 | tee -a fmt.out
- test ! -s fmt.out
- go run github.com/golang/lint/golint -set_exit_status .
- go test -coverprofile=coverage.txt -coverpkg=github.com/goeuro/myke/core,github.com/goeuro/myke/cmd -covermode=atomic -timeout 10s -v ./...
- go test -coverprofile=coverage.txt -coverpkg=github.com/omio-labs/myke/core,github.com/omio-labs/myke/cmd -covermode=atomic -timeout 10s -v ./...
- bin/cross-compile.sh "$TRAVIS_TAG-$TRAVIS_COMMIT"
after_success:
- bash <(curl -s https://codecov.io/bash) -t 5dfb580c-fad8-49bc-93eb-bf758daaca64
Expand All @@ -22,7 +22,7 @@ deploy:
- bin/myke_linux_amd64
- bin/myke_windows_amd64.exe
on:
repo: goeuro/myke
repo: omio-labs/myke
branch: none
tags: true
condition: "$TRAVIS_TAG =~ ^v[0-9].+$"
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at opensource@goeuro.com. All
reported by contacting the project team at open-source@omio.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributing

We love pull requests from everyone. By participating in this project, you
agree to abide by the [code of conduct](https://github.com/goeuro/myke/blob/master/CODE_OF_CONDUCT.md).
agree to abide by the [code of conduct](https://github.com/omio-labs/myke/blob/master/CODE_OF_CONDUCT.md).

## Contribution Guide

Expand All @@ -16,6 +16,6 @@ agree to abide by the [code of conduct](https://github.com/goeuro/myke/blob/mast
* We prefer testing-by-example, every package inside `examples/` folder has its own `package_test.go` in testing table style
* Run new tests again: `go test ./...`
* Run and test the program: `go run main.go`
* Push to your fork and [submit a pull request](https://github.com/goeuro/myke/compare)
* Push to your fork and [submit a pull request](https://github.com/omio-labs/myke/compare)
* Make sure tests pass in the CI
* Make sure you sign the [Contributor License Agreement](https://cla-assistant.io/goeuro/myke)
* Make sure you sign the [Developer Certificate of Origin](https://developercertificate.org/)
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1.11

WORKDIR /go/src/github.com/goeuro/myke
COPY . /go/src/github.com/goeuro/myke
WORKDIR /go/src/github.com/omio-labs/myke
COPY . /go/src/github.com/omio-labs/myke
CMD ["bin/cross-compile.sh"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# myke [![Latest Release](https://img.shields.io/github/release/goeuro/myke.svg)](https://github.com/goeuro/myke/releases/latest) [![Build Status](https://travis-ci.org/goeuro/myke.svg?branch=travis-ci)](https://travis-ci.org/goeuro/myke) [![Go Report Card](https://goreportcard.com/badge/github.com/goeuro/myke)](https://goreportcard.com/report/github.com/goeuro/myke) [![codecov](https://codecov.io/gh/goeuro/myke/branch/master/graph/badge.svg)](https://codecov.io/gh/goeuro/myke)
# myke [![Latest Release](https://img.shields.io/github/release/omio-labs/myke.svg)](https://github.com/omio-labs/myke/releases/latest) [![Build Status](https://travis-ci.org/omio-labs/myke.svg?branch=travis-ci)](https://travis-ci.org/omio-labs/myke) [![Go Report Card](https://goreportcard.com/badge/github.com/omio-labs/myke)](https://goreportcard.com/report/github.com/omio-labs/myke) [![codecov](https://codecov.io/gh/omio-labs/myke/branch/master/graph/badge.svg)](https://codecov.io/gh/omio-labs/myke)

> myke makes it easy to write development tasks
Expand Down Expand Up @@ -47,7 +47,7 @@ Using the above myke.yml, you can invoke tasks like:

## Installation

* [Grab the latest release](https://github.com/goeuro/myke/releases/latest)
* [Grab the latest release](https://github.com/omio-labs/myke/releases/latest)

## Examples

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "{build}"
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\goeuro\myke
clone_folder: c:\gopath\src\github.com\omio-labs\myke

skip_tags: true
branches:
Expand Down
2 changes: 1 addition & 1 deletion bin/cross-compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo $version >> "tmp/version"

# Generate license notices
go mod vendor
deps="github.com/goeuro/myke $(go list -f '{{ join .Deps "\n"}}' ./... | grep -v 'goeuro/myke')"
deps="github.com/omio-labs/myke $(go list -f '{{ join .Deps "\n"}}' ./... | grep -v 'omio-labs/myke')"
out="tmp/LICENSES"
echo -e "OPEN SOURCE LICENSES\n" > $out

Expand Down
2 changes: 1 addition & 1 deletion cmd/license.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"fmt"

"github.com/goeuro/myke/core"
"github.com/omio-labs/myke/core"
)

// License prints all open source licenses
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"github.com/apex/log"
"github.com/apex/log/handlers/cli"
"github.com/goeuro/myke/core"
"github.com/omio-labs/myke/core"
"github.com/jessevdk/go-flags"
"io"
"os"
Expand Down
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"github.com/goeuro/myke/core"
"github.com/omio-labs/myke/core"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/goeuro/myke/core"
"github.com/omio-labs/myke/core"
"github.com/pkg/errors"
"io/ioutil"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/goeuro/myke/core"
"github.com/omio-labs/myke/core"
)

// Version prints myke version
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
default:
build: .
volumes:
- ".:/go/src/github.com/goeuro/myke"
- ".:/go/src/github.com/omio-labs/myke"
2 changes: 1 addition & 1 deletion examples/env/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/hooks/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/mixin/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/retry/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/shell/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/tag/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/template/package_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package test

import (
. "github.com/goeuro/myke/examples/util"
. "github.com/omio-labs/myke/examples/util"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/util/test_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package util
import (
"bytes"
"fmt"
"github.com/goeuro/myke/cmd"
"github.com/omio-labs/myke/cmd"
"github.com/stretchr/testify/assert"
"io"
"os"
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/goeuro/myke
module github.com/omio-labs/myke

require (
github.com/Masterminds/semver v0.0.0-20170407153603-923f129261de // indirect
Expand Down Expand Up @@ -36,3 +36,5 @@ require (
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.0.0-20170407172122-cd8b52f8269e // indirect
)

go 1.13
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/apex/log"
"github.com/goeuro/myke/cmd"
"github.com/omio-labs/myke/cmd"
"os"
)

Expand Down

0 comments on commit 50bb401

Please sign in to comment.