Skip to content

add options argument in NewModel method #4

add options argument in NewModel method

add options argument in NewModel method #4

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/[email protected]
- name: Build
run: go build -v ./...
- name: Lint
run: |
go vet -v ./...
staticcheck ./...