freetype 0.8.0

Bindings for FreeType used by Servo.
Documentation
name: CI

on:
  push:
    branches:
      - main
  pull_request:

jobs:
  rust:
    strategy:
      matrix:
        toolchain: [stable, beta, nightly]
    name: Rust
    runs-on: ubuntu-24.04
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@master
        with:
          profile: minimal
          override: true
          toolchain: ${{ matrix.toolchain }}
      - name: Install dependencies
        run: sudo apt-get update && sudo apt-get install libfreetype-dev
      - run: cargo build
      - run: cargo test