From 95e9daa3ab047037c65568998d7d7e7976961ead Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:39:30 +0300 Subject: [PATCH 1/8] Create go.yml --- go.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 go.yml diff --git a/go.yml b/go.yml new file mode 100644 index 00000000..1bd0a1f9 --- /dev/null +++ b/go.yml @@ -0,0 +1,25 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.15 + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... From 87caf5c09ebafa9132b1bfe33ddf79dae064929d Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:43:57 +0300 Subject: [PATCH 2/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19a44e96..77a25ccd 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ Here is a list of similar projects: - [discord-term](https://github.com/cloudrex/discord-term) (STALE) - [6cord](https://gitlab.com/diamondburned/6cord) (DEPRECATED) -Hit me up if you have a similar project, and I'll gladly add it to the list. +Hit me up if you have a similar project, and I'll gladly add it to the list ## Credits From 876576182d081c45c5b318a3b5da38cc52458640 Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:44:13 +0300 Subject: [PATCH 3/8] Create go.yml --- .github/workflows/go.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 00000000..1bd0a1f9 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,25 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.15 + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... From 84fd5e591a26172b7c678fa5f119dfba11f95107 Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:45:55 +0300 Subject: [PATCH 4/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77a25ccd..19a44e96 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ Here is a list of similar projects: - [discord-term](https://github.com/cloudrex/discord-term) (STALE) - [6cord](https://gitlab.com/diamondburned/6cord) (DEPRECATED) -Hit me up if you have a similar project, and I'll gladly add it to the list +Hit me up if you have a similar project, and I'll gladly add it to the list. ## Credits From 786bd141753e9b6385994d141e7e74fdec43a26d Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:47:20 +0300 Subject: [PATCH 5/8] Delete .travis.yml --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ddcf3e3c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -os: osx -language: go -go: - - "1.13" -script: go test -race ./... \ No newline at end of file From 74c6acfcb296aee1c669ded11e59837e76048a41 Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:51:26 +0300 Subject: [PATCH 6/8] Delete Dockerfile --- Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 3cb43a2d..00000000 --- a/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM golang:latest - -WORKDIR /go/src/cordless - -COPY . ./ - -RUN go build . - -VOLUME ["/root/.config/cordless"] - -ENTRYPOINT ["/go/src/cordless/cordless"] - From 0f558c1c4afb9ed0786321356de2ead2e5c90936 Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:51:39 +0300 Subject: [PATCH 7/8] Remove CircleCI --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index c1bec78b..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ - -version: 2 -jobs: - build: - docker: - - image: circleci/golang:1.13 - - working_directory: /go/src/github.com/Bios-Marcel/cordless - steps: - - checkout - - - run: go get -v -t -d ./... - - run: go vet ./... - - run: go test -race -coverprofile=profile.out -covermode=atomic ./... - - run: bash <(curl -s https://codecov.io/bash) -f profile.out - - run: go build - - - store_artifacts: - path: /go/src/github.com/Bios-Marcel/cordless/cordless - destination: cordless \ No newline at end of file From 8cbc1e5f57cb7f75d6347c59f91c9cd4902ce3ac Mon Sep 17 00:00:00 2001 From: Kreato Date: Sun, 18 Apr 2021 15:58:56 +0300 Subject: [PATCH 8/8] Update issue templates --- .github/ISSUE_TEMPLATE/Bug_report.md | 12 ++++++------ .github/ISSUE_TEMPLATE/Feature_request.md | 7 +++++-- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Bug_report.md b/.github/ISSUE_TEMPLATE/Bug_report.md index f8aa9e76..7a206c4c 100644 --- a/.github/ISSUE_TEMPLATE/Bug_report.md +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -1,16 +1,16 @@ --- name: Bug report about: Tell us what went wrong +title: '' +labels: '' +assignees: '' + --- -## How have you installed cordless +## How have you installed gord -- [ ] Arch User Repository - - -- [ ] scoop -- [ ] brew - [ ] go get +- [ ] Github Releases - [ ] git clone & go build . ## What happened diff --git a/.github/ISSUE_TEMPLATE/Feature_request.md b/.github/ISSUE_TEMPLATE/Feature_request.md index cb868bc3..52acc591 100644 --- a/.github/ISSUE_TEMPLATE/Feature_request.md +++ b/.github/ISSUE_TEMPLATE/Feature_request.md @@ -1,6 +1,9 @@ --- name: Feature request -about: Tell us what you'd like to see in cordless +about: Tell us what you'd like to see in gord +title: '' +labels: '' +assignees: '' --- @@ -10,7 +13,7 @@ about: Tell us what you'd like to see in cordless ## Why - + ## Implementation hints