Skip to content

Implement stubbed Phase 1 modules: topology gaps/overlaps and distance distortion #12

Implement stubbed Phase 1 modules: topology gaps/overlaps and distance distortion

Implement stubbed Phase 1 modules: topology gaps/overlaps and distance distortion #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
rust:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install stable Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
- name: Clippy (deny warnings)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all --all-features
- name: Build
run: cargo build --release --locked