Skip to content

Add callback-based block creation API #173

Add callback-based block creation API

Add callback-based block creation API #173

Workflow file for this run

name: Build
on:
pull_request:
branches: ["master"]
workflow_dispatch: # Allows manual triggering
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-2025-vs2026
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Cache cargo
uses: ./.github/actions/cargo-cache
with:
profile: debug
- name: Install protobuf compiler
uses: ./.github/actions/setup-protoc
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose