summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml')
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/.github/workflows/test.yml37
1 files changed, 37 insertions, 0 deletions
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 }}