Test from_unit_vector
and avoid unnessessary normalizing
#23
Workflow file for this run
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
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
cargo-test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: Leafwing-Studios/cargo-cache@v2 | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Cargo test | |
run: cargo hack test --feature-powerset --mutually-exclusive-features std,libm | |
cargo-clippy: | |
name: Run Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- uses: Leafwing-Studios/cargo-cache@v2 | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Cargo clippy | |
run: cargo hack clippy --feature-powerset --mutually-exclusive-features std,libm -- -D warnings | |
cargo-fmt: | |
name: Check Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
- name: Cargo fmt | |
run: cargo fmt --all --check |