postscript 0.14.1

The package provides a parser for PostScript fonts.
Documentation
name: build

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main
  workflow_dispatch:

jobs:
  agnostic:
    runs-on: macos-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/cargo@v1
        with: {command: fmt, args: --all -- --check}

  macos:
    runs-on: macos-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/cargo@v1
        with: {command: test}
      - uses: actions-rs/cargo@v1
        with: {command: test, args: --all-features}

  ubuntu:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: actions-rs/cargo@v1
        with: {command: test}
      - uses: actions-rs/cargo@v1
        with: {command: test, args: --all-features}