Skip to content

Initial streaming rapidhash rust rewrite, aggregate checksum from wra… #29

Initial streaming rapidhash rust rewrite, aggregate checksum from wra…

Initial streaming rapidhash rust rewrite, aggregate checksum from wra… #29

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
name: Rust stable (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry and target
uses: Swatinem/rust-cache@v2
- name: Check format
run: cargo fmt --all --check
- name: Lint
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test --locked