Skip to content

gomod: bump github.com/spf13/viper from 1.15.0 to 1.17.0 #118

gomod: bump github.com/spf13/viper from 1.15.0 to 1.17.0

gomod: bump github.com/spf13/viper from 1.15.0 to 1.17.0 #118

Workflow file for this run

name: Build and Test
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- run: go build -v ./...
- run: go test -v ./...
format:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- run: go mod tidy
- run: go fmt ./...
- run: git diff --exit-code --stat
lint:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- uses: reviewdog/action-golangci-lint@v2