xmath 0.2.9

Rust port of Microsoft DirectXMath
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        glium: ["", "glium-support"]
    steps:
      - uses: actions/checkout@v2
      - run: cargo build --features '${{ matrix.glium }}'
      - run: cargo test --features '${{ matrix.glium }}'
      - run: cargo clippy --features '${{ matrix.glium }}' --no-deps -- -D warnings
      - run: cargo fmt -- --check