Skip to content

Add -config flag

Add -config flag #20

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
jobs:
testing:
name: unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21.2
uses: actions/setup-go@v5
with:
go-version: 1.21.2
- name: Run unit tests
run: go test
linter:
name: linter check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21.2
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58