summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github')
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/FUNDING.yml12
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/workflows/test.yml41
2 files changed, 53 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/FUNDING.yml b/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/FUNDING.yml
new file mode 100644
index 0000000..351ae11
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.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-colorable@v0.1.13/.github/workflows/test.yml b/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/workflows/test.yml
new file mode 100644
index 0000000..7a5ba03
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/mattn/go-colorable@v0.1.13/.github/workflows/test.yml
@@ -0,0 +1,41 @@
+name: test
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+
+jobs:
+ test:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - ubuntu-latest
+ - macos-latest
+ - windows-latest
+ go:
+ - '1.17'
+ - '1.16'
+ - '1.15'
+ - '1.14'
+ - '1.13'
+ 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 }}