Skip to content

Commit 2267280

Browse files
committed
\#patch bump deps
1 parent 6103b07 commit 2267280

File tree

6 files changed

+473
-54
lines changed

6 files changed

+473
-54
lines changed

.github/workflows/codecov.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/golangci-lint.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: GoReleaser
22
on:
33
workflow_run:
4-
workflows: ["Bump Version"]
4+
workflows: ["Bump Git/Docker Version"]
55
branches: [master]
66
types:
77
- completed

.github/workflows/test.yaml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ jobs:
77
test:
88
runs-on: ubuntu-latest
99
steps:
10-
- name: Install Go
11-
uses: actions/setup-go@v2
12-
- name: Checkout code
13-
uses: actions/checkout@v2
14-
- name: Test
15-
run: go test ./...
10+
- name: Install Go
11+
uses: actions/setup-go@v2
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
- name: Test
15+
run: go test -coverprofile=coverage.txt ./...
16+
- name: Codecov
17+
uses: codecov/codecov-action@v1
18+
with:
19+
file: ./coverage.txt
20+
golangci-lint:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: golangci-lint
25+
uses: golangci/golangci-lint-action@v2
26+
with:
27+
version: v1.32

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ go 1.13
55
require (
66
github.com/PuerkitoBio/goquery v1.6.0
77
github.com/andybalholm/cascadia v1.2.0 // indirect
8+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.2.0
89
github.com/mattn/go-runewidth v0.0.9 // indirect
910
github.com/olekukonko/tablewriter v0.0.4
1011
github.com/sirupsen/logrus v1.7.0
1112
github.com/stretchr/testify v1.6.1
12-
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102 // indirect
13-
golang.org/x/sys v0.0.0-20201107080550-4d91cf3a1aaf // indirect
13+
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
14+
golang.org/x/sys v0.0.0-20201110211018-35f3e6cf4a65 // indirect
1415
gopkg.in/yaml.v2 v2.3.0
1516
)

0 commit comments

Comments
 (0)