pretty 0.12.5

Wadler-style pretty-printing combinators in Rust
Documentation
name: Build

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: Build
      run: cargo build
    - name: Run tests
      run: cargo test --no-default-features
    - name: Run benchmarks
      run: cargo test --all-features --examples --benches