Skip to content

add base64 tests

add base64 tests #16

Workflow file for this run

on: [push, pull_request]
name: Lint and Test
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features -p tvm_client
- run: cargo test --all-features -p tvm_sdk
- run: cargo test --all-features -p tvm_cli