small changes to convex hull module #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust CI | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- '**.rs' | |
- '**.toml' | |
- '**.yml' | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- '**.rs' | |
- '**.toml' | |
- '**.yml' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check formatting jagua-rs | |
run: | | |
cd jagua-rs | |
cargo fmt --all -- --check | |
- name: Check formatting lbf | |
run: | | |
cd lbf | |
cargo fmt --all -- --check | |
build_jaguars: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Jagua-rs (f32) | |
run: | | |
cd jagua-rs | |
cargo build --all-targets | |
cargo doc | |
- name: Build Jagua-rs (f64) | |
run: | | |
cd jagua-rs | |
cargo build --all-targets --features double-precision | |
cargo doc | |
build_lbf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build LBF targets | |
run: | | |
cd lbf | |
cargo build --all-targets | |
- name: Build docs | |
run: | | |
cd lbf | |
cargo doc | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
cd lbf | |
cargo test --verbose | |
example_in_readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Runs the example in the README | |
run: | | |
cd lbf | |
cargo run --release -- -i ../assets/swim.json -c ../assets/config_lbf.json -s ../solutions |