Skip to content

Minor changes -- more comments, removed some debugging lines #65

Minor changes -- more comments, removed some debugging lines

Minor changes -- more comments, removed some debugging lines #65

Workflow file for this run

name: Protocols Tests
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-24.04
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests (Debug)
run: cargo test --verbose
msrv:
name: Check Minimum Rust Version
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: taiki-e/cache-cargo-install-action@v2
with:
tool: cargo-msrv
- name: Check MSRV
run: cargo msrv verify
format:
name: Check Formatting
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check