Skip to content

[pre-commit.ci] pre-commit autoupdate #177

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #177

Workflow file for this run

name: Linting
on: [push, pull_request, workflow_call]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- 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 -e .[pre-commit]
- name: Run pre-commit
run: |
pre-commit run --all-files || (git status --short; git diff ; exit 1)