Skip to content

Add gha to run tests #1

Add gha to run tests

Add gha to run tests #1

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Run tests
run: go test ./...