Skip to content

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0 #23

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0 #23

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- '**'
pull_request:
types: [ opened, reopened ]
jobs:
tests:
strategy:
matrix:
go-version: [ 1.20.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependencies
run: go mod download
- name: Test
run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic -gcflags=-l