This commit is contained in:
Harivansh Rathi 2026-02-07 14:08:09 -05:00
parent 011170671c
commit 6d7716a0fe
3 changed files with 155 additions and 1 deletions

27
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: CI
on:
pull_request:
push:
branches-ignore:
- main
tags-ignore:
- "v*"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...