Skip to content

version bump for maintenance release #10

version bump for maintenance release

version bump for maintenance release #10

Workflow file for this run

name: do-linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: |
pip install -e .[dev]
pip install pylint
- name: Run Pylint
run: |
pylint $(git ls-files '*.py')