Skip to content

implemented options params with object initialization #27

implemented options params with object initialization

implemented options params with object initialization #27

Workflow file for this run

name: Build
# this will work for every push
on: ["push"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...