Skip to content

harden(v3): defensive validation everywhere, ForwardSparse returns er… #7

harden(v3): defensive validation everywhere, ForwardSparse returns er…

harden(v3): defensive validation everywhere, ForwardSparse returns er… #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
validate:
name: Validate Nexus Cortex
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Go test
run: go test -count=1 ./...
- name: Go vet
run: go vet ./...
- name: Build Go commands
run: go build ./cmd/...