asciimath-unicode 0.4.1

Convert asciimath to unicode
Documentation
name: build

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Install nightly toolchain
      run: rustup toolchain install nightly --component clippy
    - name: Install llvm-tools-preview
      run: rustup component add llvm-tools-preview
    - uses: Swatinem/rust-cache@v2
    - uses: taiki-e/install-action@cargo-llvm-cov
    - name: Build
      run: cargo build --verbose --all-features
    - name: Build without default features
      run: cargo build --verbose --no-default-features
    - name: Run tests with coverage
      run: cargo llvm-cov --verbose --all-features --fail-under-lines 90
    - name: Run lints
      run: cargo clippy --verbose --all-features --tests -- -D warnings
    - name: Check docs
      run: RUSTDOCFLAGS="-D warnings" cargo doc --verbose --all-features --no-deps
    - name: Run bench lints
      run: cargo +nightly clippy --verbose --benches -- -D warnings
    - name: Check formatting
      run: cargo fmt --verbose --check