Merge pull request #111 from googlefonts/test-string-thresh #258
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# test on same versions as fonttools | |
python-version: ["3.7", "3.10"] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: # Only test on the latest supported stable Python on macOS and Windows. | |
- platform: macos-latest | |
python-version: 3.7 | |
- platform: windows-latest | |
python-version: 3.7 | |
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 . | |
pip install pytest | |
- name: Run Tests | |
run: | | |
pytest tests/ | |
env: | |
GH_TOKEN: ${{ github.token }} |