Skip to content

Add CI testing

Add CI testing #2

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Test
run: go test ./...