composing 0.2.0

Tools to compose functions
Documentation
name: Rust

on:
  workflow_dispatch:
  push:
    branches:
      - '*'
    paths-ignore:
      - '*.md'
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  build-and-test:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3

    - name: Check
      run: cargo check --verbose --all-features --all-targets

    - name: Build
      run: cargo build --verbose --all-features --all-targets

    - name: Test
      run: cargo test --verbose --no-default-features
      run: cargo test --verbose --all-features

    - name: Clippy
      run: cargo clippy --verbose --all-features --all-targets

    - name: Fmt
      run: cargo fmt --check