Bump github.com/maxbrunsfeld/counterfeiter/v6 from 6.4.1 to 6.7.0 #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test | |
on: [push] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Unit tests | |
run: | | |
go get github.com/onsi/ginkgo/[email protected] | |
go mod download | |
make unit-test | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint | |
run: | | |
go get github.com/golangci/golangci-lint/cmd/[email protected] | |
make lint |