Skip to content

feat: add rust client example #43

feat: add rust client example

feat: add rust client example #43

Workflow file for this run

name: nv - Build and Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint fmt
run: cargo fmt -- --check
- name: Lint clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose