Skip to content

Create .pre-commit-config.yaml #8

Create .pre-commit-config.yaml

Create .pre-commit-config.yaml #8

Workflow file for this run

name: Pylint Post-Commit
on: [push]
jobs:
post-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8","3.9","3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: Check for PEP 8 style using flake8
run: |
flake8 ${{ steps.changed-files.outputs.all_modified_files }}