Skip to content

Bump github.com/spf13/viper from 1.17.0 to 1.18.1 #212

Bump github.com/spf13/viper from 1.17.0 to 1.18.1

Bump github.com/spf13/viper from 1.17.0 to 1.18.1 #212

Workflow file for this run

name: Go Build
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: 1.20.0
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v ./...