Skip to content

Scheduled weekly dependency update for week 37 #2048

Scheduled weekly dependency update for week 37

Scheduled weekly dependency update for week 37 #2048

Workflow file for this run

name: Run FontGoggles test suite
on:
push:
branches: [master]
paths-ignore:
- docs/*
- docsSource/*
- Scripts/*
- AUTHORS.txt
- CHANGELOG.md
- CONTRIBUTORS.txt
- LICENSE.txt
- README.md
pull_request:
branches: [master]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install .
python -c "import platform; print(platform.platform())"
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --ignore=F403,F405
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --ignore=F403,F405
- name: Test with pytest
run: |
pip install -r requirements-dev.txt
pytest