Skip to content

Bump github.com/spf13/viper from 1.16.0 to 1.18.2 #127

Bump github.com/spf13/viper from 1.16.0 to 1.18.2

Bump github.com/spf13/viper from 1.16.0 to 1.18.2 #127

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.51.2
build:
name: build
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...