Skip to content

Bump github.com/knadh/koanf/providers/file from 1.1.0 to 1.1.2 #254

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

Bump github.com/knadh/koanf/providers/file from 1.1.0 to 1.1.2 #254

Workflow file for this run

name: Go Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
name: Test and Build
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run Tests
run: make test
- name: Build
run: make build