Skip to content

fix: update SHA256 checksum generation for cross-platform compatibility #3

fix: update SHA256 checksum generation for cross-platform compatibility

fix: update SHA256 checksum generation for cross-platform compatibility #3

Workflow file for this run

name: Rust CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt -- --check
- name: Lint with clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --all-features