hs-bindgen 0.9.0

Handy macro to generate C-FFI bindings to Rust for Haskell
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v3
    - name: Build (--features full)
      run: cargo build --verbose --features full
    - name: Run tests (--features full)
      run: cargo test --verbose --features full