summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:04 +0000
commitb09c6d56832eb1718c07d74abf3bc6ae3fe4e030 (patch)
treed2caec2610d4ea887803ec9e9c3cd77136c448ba /dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github
parentInitial commit. (diff)
downloadicingadb-b09c6d56832eb1718c07d74abf3bc6ae3fe4e030.tar.xz
icingadb-b09c6d56832eb1718c07d74abf3bc6ae3fe4e030.zip
Adding upstream version 1.1.0.upstream/1.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github')
-rw-r--r--dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/ISSUE_TEMPLATE.md10
-rw-r--r--dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/PULL_REQUEST_TEMPLATE.md10
-rw-r--r--dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/workflows/build.yml56
3 files changed, 76 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/ISSUE_TEMPLATE.md b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..f3c1908
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,10 @@
+Before you file an issue, please consider:
+
+We only accept pull requests for minor fixes or improvements. This includes:
+
+* Small bug fixes
+* Typos
+* Documentation or comments
+
+Please open issues to discuss new features. Pull requests for new features will be rejected,
+so we recommend forking the repository and making changes in your fork for your use case.
diff --git a/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/PULL_REQUEST_TEMPLATE.md b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..0c22b92
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,10 @@
+Before you create a pull request, please consider:
+
+We only accept pull requests for minor fixes or improvements. This includes:
+
+* Small bug fixes
+* Typos
+* Documentation or comments
+
+Please open issues to discuss new features. Pull requests for new features will be rejected,
+so we recommend forking the repository and making changes in your fork for your use case.
diff --git a/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/workflows/build.yml b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/workflows/build.yml
new file mode 100644
index 0000000..a63f405
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/!vivid!cortex/ewma@v1.2.0/.github/workflows/build.yml
@@ -0,0 +1,56 @@
+name: build
+
+on:
+ push:
+ branches:
+ - master
+ paths-ignore:
+ - .github/**
+ - .gitignore
+ - .whitesource
+ - codecov.yml
+ - README.md
+ pull_request:
+ paths-ignore:
+ - .github/**
+ - .gitignore
+ - .whitesource
+ - codecov.yml
+ - README.md
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - go: 1.15
+ build-with: true
+ - go: 1.16
+ build-with: false
+ continue-on-error: ${{ matrix.build-with == false }}
+ name: Build with ${{ matrix.go }}
+ env:
+ GO111MODULE: on
+
+ steps:
+ - name: Set up Go
+ uses: actions/setup-go@v1
+ with:
+ go-version: ${{ matrix.go }}
+
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Vet
+ run: go vet ./...
+
+ - name: Test
+ run: go test -vet=off -race -coverprofile=coverage.txt -covermode=atomic ./...
+
+ - name: Upload code coverage report
+ if: matrix.build-with == true
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ run: bash <(curl -s https://raw.githubusercontent.com/VividCortex/codecov-bash/master/codecov)