Skip to content

Bump github.com/knadh/koanf/providers/file from 1.0.0 to 1.1.0 #60

Bump github.com/knadh/koanf/providers/file from 1.0.0 to 1.1.0

Bump github.com/knadh/koanf/providers/file from 1.0.0 to 1.1.0 #60

Workflow file for this run

name: Go test and coverage
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: '1.21.5'
- name: Run coverage
run: go test -race -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)