qhull 0.4.0

Rust bindings to Qhull
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
          os: [ubuntu-latest, windows-latest, macos-latest]

    steps:
    - uses: actions/checkout@v3 # see https://github.com/marketplace/actions/checkout-submodules
      with:
        submodules: recursive
    - name: Check
      run: cargo check --verbose
    - name: Build
      run: cargo build --verbose
    - name: Build (release)
      run: cargo build --verbose --release
    - name: Run tests
      run: cargo test --verbose --all
    - name: Run tests (release)
      run: cargo test --verbose --all --release
    - name: Build documentation
      run: cargo doc --verbose