summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:40:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:40:59 +0000
commitbc4e624732bd51c0dd1e9529cf228e8c23127732 (patch)
treed95dab8960e9d02d3b95f8653074ad2e54ca207c /dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github
parentInitial commit. (diff)
downloadicingadb-bc4e624732bd51c0dd1e9529cf228e8c23127732.tar.xz
icingadb-bc4e624732bd51c0dd1e9529cf228e8c23127732.zip
Adding upstream version 1.1.1.upstream/1.1.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github')
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/FUNDING.yml12
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml37
2 files changed, 49 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/FUNDING.yml b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/FUNDING.yml
new file mode 100644
index 0000000..351ae11
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/FUNDING.yml
@@ -0,0 +1,12 @@
+# These are supported funding model platforms
+
+github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
+patreon: mattn # Replace with a single Patreon username
+open_collective: # Replace with a single Open Collective username
+ko_fi: # Replace with a single Ko-fi username
+tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
+community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
+liberapay: # Replace with a single Liberapay username
+issuehunt: # Replace with a single IssueHunt username
+otechie: # Replace with a single Otechie username
+custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
diff --git a/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml
new file mode 100644
index 0000000..f63e5c8
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml
@@ -0,0 +1,37 @@
+name: test
+on:
+ push:
+ pull_request:
+
+jobs:
+ test:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - ubuntu-latest
+ - macos-latest
+ - windows-latest
+ go:
+ - '1.18'
+ - '1.19'
+ - '1.17'
+ - '1.16'
+ - '1.15'
+ steps:
+ - uses: actions/setup-go@v2
+ with:
+ go-version: ${{ matrix.go }}
+ - uses: actions/checkout@v2
+ - name: test
+ shell: bash
+ run: |
+ ./go.test.sh
+ - name: upload coverage report
+ uses: codecov/codecov-action@v2
+ with:
+ env_vars: OS,GO
+ env:
+ OS: ${{ matrix.os }}
+ GO: ${{ matrix.go }}