Skip to content

better models

better models #8

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: stable
- name: Build
run: make build
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
- name: Test
run: make test
- name: Update test coverage
uses: ncruces/go-coverage-report@main