docs(README): add note about fontconfig dependency #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |