Skip to content

Fixes failing CI on pre-commit and lint #313

Fixes failing CI on pre-commit and lint

Fixes failing CI on pre-commit and lint #313

Workflow file for this run

name: Pre-commit
on:
pull_request:
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6.2.0
with:
python-version: '3.x'
check-latest: true
- run: python -m pip install pre-commit
shell: bash
- run: python -m pip install jsonref # for jsonschema-dereference.py
shell: bash
- run: python -m pip freeze --local
shell: bash
- name: Run pre-commit
run: make pre-commit-run
shell: bash