Skip to content

docs: improve description and README #20

docs: improve description and README

docs: improve description and README #20

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test-font-enumeration:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Build font-enumeration
run: cargo build --package font-enumeration --verbose
- name: Run font-enumeration tests
run: cargo test --package font-enumeration --verbose
build-and-test-font-info:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build font-info
run: cargo build --package font-info --verbose
- name: Run font-info tests
run: cargo test --package font-info --verbose