Skip to content

Expand README with complete quick start example and add public API #27

Expand README with complete quick start example and add public API

Expand README with complete quick start example and add public API #27

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Core Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run Fast Core Tests
run: ./scripts/test.sh
integration-test:
name: Integration & Stress Tests
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run Full Integration Suite
run: ./scripts/test-full.sh