Skip to content

fix: bug with global configuration #4

fix: bug with global configuration

fix: bug with global configuration #4

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
- name: Build
run: go build -v
- name: Test
run: go test -v