Skip to content

tests structure; renames; readme fix; #10

tests structure; renames; readme fix;

tests structure; renames; readme fix; #10

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test_mmr:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --all-features && cargo clippy --all-features