Skip to content

add config command #184

add config command

add config command #184

Workflow file for this run

name: test
on: ["push"]
permissions:
contents: read
jobs:
golangci:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: "1.23.x"
cache: false
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...