Skip to content

format

format #11

Workflow file for this run

name: pylint
on: [push]
jobs:
lint:
name: Lint (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- run: |
pylint $(git ls-files '*.py')