ttf2mesh 0.2.1

Rust API for ttf2mesh - a crossplatform library allows to convert a glyphs of truetype font (ttf) to a mesh objects in 2d and 3d space
Documentation
name: test

on: [push, pull_request]

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    strategy:
      matrix:
        os: [windows-latest, ubuntu-latest]
        rust: [stable, nightly]
    runs-on: ${{ matrix.os }}

    steps:
      - name: Install dependencies
        run: sudo apt-get install gcc patch libudev-dev git
        if: runner.os == 'linux'

      - uses: actions/checkout@v2

      - uses: dtolnay/rust-toolchain@v1
        with:
          toolchain: ${{matrix.rust}}

      - name: Init submodules
        run: git submodule update --init

      - name: Cache
        uses: actions/cache@v3
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.toml') }}

      - name: Run tests
        run: cargo test --verbose