geoms 0.0.1

Optimized geometry primitives for Microsoft platforms with the same memory layout as DirectX and Direct2D and types
Documentation
name: CI

on:
  push:
    branches: [ "*" ]
  pull_request:
    branches: [ "*" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: windows-latest

    steps:
    - uses: actions/checkout@v3
    - name: Check
      run: cargo check --verbose --all-features
    - name: Clippy
      run: cargo clippy --verbose --tests --all-features -- -Dwarnings
    - name: Run tests
      run: cargo test --verbose --all-features