polyhedra 0.1.0

Polyhedra is a small library for creating polyhedra.
Documentation
name: Rust

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: cargo build --verbose
    - name: Lint
      run: cargo clippy
    - name: Run tests
      run: cargo test --verbose
    - name: Run tests for no_std
      run: cargo test --verbose --no-default-features