Skip to content

ci: Create workflow for Go tests on PR as CI #2

ci: Create workflow for Go tests on PR as CI

ci: Create workflow for Go tests on PR as CI #2

Workflow file for this run

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