Skip to content

Initial code: supporting 'load' and 'diff' commands #8

Initial code: supporting 'load' and 'diff' commands

Initial code: supporting 'load' and 'diff' commands #8

Workflow file for this run

name: Go package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Build
run: make build
- name: Lint
run: make lint
- name: Test
run: make test