pretty-hex 0.4.2

Pretty hex dump of bytes slice in the common style.
Documentation
name: Build and test

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v6
    - name: Build default
      run: cargo build --verbose
    - name: Build without alloc
      run: cargo build --no-default-features --verbose
    - name: Test default
      run: cargo test --verbose
    - name: Test without alloc
      run: cargo test --no-default-features --verbose