Skip to content

Add initial tests

Add initial tests #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: macos-latest
steps:
- name: Setup Go environment
uses: actions/[email protected]
- name: Lint code
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.57.2
golangci-lint run
- name: Run tests
run: go test