Skip to content

Bump github.com/vektra/mockery/v2 from 2.32.3 to 2.35.2 #149

Bump github.com/vektra/mockery/v2 from 2.32.3 to 2.35.2

Bump github.com/vektra/mockery/v2 from 2.32.3 to 2.35.2 #149

Workflow file for this run

name: Code Quality
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.21'
cache: false
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.52
args: --timeout=5m
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Go dependencies
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Execute unit test
run: make test