Skip to content

🩹 Strip leading and trailing whitespace from path inputs #110

🩹 Strip leading and trailing whitespace from path inputs

🩹 Strip leading and trailing whitespace from path inputs #110

Workflow file for this run

name: "Linting"
on:
push:
branches:
- main
pull_request: {}
jobs:
pylint:
name: Maintain code quality
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
linter-env: ["linting", "typechecking", "spellchecking"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run ${{ matrix.linter-env }} via tox
run: |
tox -e ${{ matrix.linter-env }}