Skip to content

NanoClaw integration: read-only DB, skill assets, and docs #39

NanoClaw integration: read-only DB, skill assets, and docs

NanoClaw integration: read-only DB, skill assets, and docs #39

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.24']
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Run unit tests
run: go test ./...
- name: Run E2E tests
run: make test