Skip to content

chore(deps): update module github.com/vektra/mockery/v2 to v2.40.1 #175

chore(deps): update module github.com/vektra/mockery/v2 to v2.40.1

chore(deps): update module github.com/vektra/mockery/v2 to v2.40.1 #175

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.*' ]
name: Tests
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: CGO_ENABLED=1 go test -race ./...
static-checks:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.*' ]
name: Static checks
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Get dependencies
run: go get -v -t -d ./...
- name: Go Vet
run: go vet ./...
- name: Go Fmt
run: |
fmt=$(gofmt -l .)
test -z $fmt || (echo "please run gofmt" ; echo $fmt ; exit 1)
- name: Go Lint
run: go run golang.org/x/lint/golint@latest -set_exit_status $(go list ./...)
- name: Spelling
run: go run github.com/client9/misspell/cmd/misspell@latest -error .
- name: Ineffective assignments
run: go run github.com/gordonklaus/ineffassign@latest .
- name: Go Generate
run: |
go generate ./...
git diff --quiet || (echo 'generated go files are not up to date, check go generate, go.sum and go.mod' ; git diff ; exit 1)
- name: WriteGoList
run: go list -json -m all > go.list