Skip to content

Update pkg/config/config.go #612

Update pkg/config/config.go

Update pkg/config/config.go #612

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: ["1.21"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: go test -v ./...