Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Update README.md

Update README.md #22

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install .
sudo apt-get install -y libharfbuzz-dev libfreetype6-dev libglib2.0-dev libcairo2-dev
- name: Run Tests
run: |
cd tests
sh run.sh