Skip to content

Bump github.com/spf13/viper from 1.18.1 to 1.18.2 #76

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

Bump github.com/spf13/viper from 1.18.1 to 1.18.2 #76

Workflow file for this run

---
on:
push:
branches:
- master
pull_request:
branches:
- master
name: Test
jobs:
test:
strategy:
matrix:
go-version: [ "1.19", "1.20", "1.x" ]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
-
name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
-
name: Checkout code
uses: actions/checkout@v2
-
name: Build
run: go build ./...
-
name: Test
run: go test -v -cover ./...