Skip to content

Add initial tests

Add initial tests #2

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]
with:
go-version: ">=1.22.1"
- 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