Skip to content

feat: add gha go test #2

feat: add gha go test

feat: add gha go test #2

Workflow file for this run

name: go-test
on:
pull_request:
branches:
- master
jobs:
build:
name: Run Go tests
runs-on:
- self-hosted
- medium
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: go test ./...