Config

Discord-auto-upload configuration

+

(How to find your discord webhook

+
-- 2.47.2 From b69acac0d099e86c74bb2d1c02cf77a289a882c0 Mon Sep 17 00:00:00 2001 From: NoahBohme <43778295+NoahBohme@users.noreply.github.com> Date: Tue, 23 Feb 2021 09:46:47 +0100 Subject: [PATCH 3/4] 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 0000000..1bd0a1f --- /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 ./... -- 2.47.2 From ae24f16631952f436971ffe6ee360719f94ebe7b Mon Sep 17 00:00:00 2001 From: NoahBohme <43778295+NoahBohme@users.noreply.github.com> Date: Mon, 15 Mar 2021 11:51:07 +0100 Subject: [PATCH 4/4] Delete .github/workflows directory --- .github/workflows/go.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index 1bd0a1f..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,25 +0,0 @@ -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 ./... -- 2.47.2