Skip to content

Commit

Permalink
feat: add experimental rust-based client
Browse files Browse the repository at this point in the history
  • Loading branch information
kantord committed Jan 7, 2024
1 parent 3476155 commit 4698ced
Show file tree
Hide file tree
Showing 8 changed files with 2,298 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: rust build & test

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,8 @@ cython_debug/
.testmondata*
prof/
benchmark/examples/*/results/


# Added by cargo

/target
Loading

0 comments on commit 4698ced

Please sign in to comment.