Skip to content

Commit

Permalink
\#patch bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
circa10a committed Nov 11, 2020
1 parent 6103b07 commit 2267280
Show file tree
Hide file tree
Showing 6 changed files with 473 additions and 54 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/codecov.yaml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/golangci-lint.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: GoReleaser
on:
workflow_run:
workflows: ["Bump Version"]
workflows: ["Bump Git/Docker Version"]
branches: [master]
types:
- completed
Expand Down
24 changes: 18 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,21 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
- name: Install Go
uses: actions/setup-go@v2
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -coverprofile=coverage.txt ./...
- name: Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.32
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ go 1.13
require (
github.com/PuerkitoBio/goquery v1.6.0
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.2.0
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.6.1
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102 // indirect
golang.org/x/sys v0.0.0-20201107080550-4d91cf3a1aaf // indirect
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
golang.org/x/sys v0.0.0-20201110211018-35f3e6cf4a65 // indirect
gopkg.in/yaml.v2 v2.3.0
)
Loading

0 comments on commit 2267280

Please sign in to comment.