Skip to content

Merge pull request #4 from source-foundry/dependabot/pip/pygments-2.15.0 #37

Merge pull request #4 from source-foundry/dependabot/pip/pygments-2.15.0

Merge pull request #4 from source-foundry/dependabot/pip/pygments-2.15.0 #37

Workflow file for this run

name: Python Lints
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python testing dependencies
run: pip install --upgrade flake8
- name: flake8 Lint
uses: py-actions/flake8@v1
with:
max-line-length: "90"
path: "lib/fontsize"