Skip to content

feat: redesign as context-guru — provider-agnostic context-engineering #8

feat: redesign as context-guru — provider-agnostic context-engineering

feat: redesign as context-guru — provider-agnostic context-engineering #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
build-test:
runs-on: ubuntu-latest
env:
CGO_ENABLED: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
check-latest: true
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build
run: make build
trivy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Trivy filesystem scan
uses: aquasecurity/trivy-action@0.28.0
with:
scan-type: fs
ignore-unfixed: true
severity: CRITICAL,HIGH
exit-code: '1'