Skip to content

Initial adapter RPC #23

Initial adapter RPC

Initial adapter RPC #23

Workflow file for this run

---
name: pr
on:
pull_request:
branches:
- trunk
workflow_dispatch:
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
CARGO_NET_RETRY: 10
CARGO_HTTP_TIMEOUT: 60
CARGO_INCREMENTAL: 0
jobs:
check:
name: cargo check + test
runs-on: spiceai-macos
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.91
- name: cargo check
run: cargo check --workspace
- name: cargo test
run: cargo test -p spicebench
clippy:
name: cargo clippy
runs-on: spiceai-macos
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.91
- name: cargo clippy
run: cargo clippy -p spicebench --all-targets -- -D warnings