Skip to content

Added testing/linting actions. #1

Added testing/linting actions.

Added testing/linting actions. #1

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Run tests
run: make test