Skip to content

Dockerfile: pin python version #6

Dockerfile: pin python version

Dockerfile: pin python version #6

Workflow file for this run

name: Run pre-commit hooks
on:
push:
paths:
- '**.py'
workflow_dispatch:
jobs:
code-quality:

Check failure on line 9 in .github/workflows/run-precommit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-precommit.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4.3.0
with:
python-version: '3.8'
- name: Install dev requirements
run: pip install -r dev-requirements.txt
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure