Skip to content

Remove aligned block format and do all calculations in the standard raster coefficient format #209

Remove aligned block format and do all calculations in the standard raster coefficient format

Remove aligned block format and do all calculations in the standard raster coefficient format #209

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-wasi,aarch64-unknown-linux-musl,x86_64-pc-windows-msvc
- name: Build
run:
cargo build --locked --verbose
cargo build --locked --verbose --target wasm32-wasi
cargo build --locked --verbose --target aarch64-unknown-linux-musl
cargo build --locked --verbose --target x86_64-pc-windows-msvc
- name: Run tests
run: cargo test --locked --verbose
- name: Check formatting
run: cargo fmt --check