Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/exploration-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Exploration CI

on:
push:
branches:
- feat/wasm-language-runtime
- feat/sqlite-link-storage
- fix/remove-surrealdb-scripting
pull_request:
branches: [dev]

jobs:
cargo-check:
name: Cargo Check
runs-on: ubuntu-22.04
container:
image: coasys/ad4m-ci-linux:latest@sha256:3d6e8b6357224d689345eebd5f9da49ee5fd494b3fd976273d0cf5528f6903ab
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: rust-executor
cache-on-failure: true
- name: Cargo check
run: cd rust-executor && cargo check 2>&1
- name: Cargo test (surreal_service)
run: cd rust-executor && cargo test surreal_service -- --nocapture 2>&1
- name: Cargo test (perspective parse_literal)
run: cd rust-executor && cargo test test_literal_parsing test_docs_parse_literal -- --nocapture 2>&1
96 changes: 0 additions & 96 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ anyhow = "1.0.95"
portpicker = "0.1.1"
deno_error = "0.5.6"
thiserror = "2.0.12"
surrealdb = { version = "2.4", default-features = false, features = ["kv-rocksdb", "kv-mem", "scripting"] }
surrealdb = { version = "2.4", default-features = false, features = ["kv-rocksdb", "kv-mem"] }

[dev-dependencies]
maplit = "1.0.2"
Expand Down
Loading
Loading