Skip to content

Upgrade fonttools

Upgrade fonttools #318

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:

Check failure on line 11 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 11, Col: 5): Required property is missing: runs-on
matrix:
# test on same versions as fonttools
python-version: ["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.10
- platform: windows-latest
python-version: 3.10
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 }}