Skip to content

chore(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 #221

chore(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0

chore(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 #221

Workflow file for this run

name: tests
on:
pull_request:
branches: [ main ]
jobs:
build:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: go build -v ./...
lint:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/go-mockery-action@v0.1
with:
mockery-version: '2.42.0'
- run: make mock
- uses: dominikh/staticcheck-action@v1
with:
version: '2025.1.1'
install-go: false
unit:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/go-mockery-action@v0.1
with:
mockery-version: '2.42.0'
- run: make mock
- run: make test