agentikube/.github/workflows/ci.yml
2026-02-07 14:08:09 -05:00

27 lines
424 B
YAML

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 ./...