Skip to content

adds go testing workflow #1

adds go testing workflow

adds go testing workflow #1

Workflow file for this run

name: Test Go
on:
push:
pull_request:
branches: [ "main" ]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Run Go tests
run: go test -v ./cmd/...