ffi-closure 1.1.0

Send and recevie closures through FFI
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Install nightly toolchain
      run: rustup toolchain install nightly
    - name: Build
      run: cargo +nightly build --all-features
    - name: Run tests
      run: cargo +nightly test --all-features --verbose