Skip to content

Update issue templates config and formatting.. use .yml #3089

Update issue templates config and formatting.. use .yml

Update issue templates config and formatting.. use .yml #3089

Workflow file for this run

name: linters
on:
push:
branches: [ main, v14 ]
pull_request:
branches: [ main, v14 ]
types: [ opened, synchronize, reopened ]
jobs:
linters:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install linters related packages
run: pip install ".[linters]"
- name: Run pre-commit hooks
run: pre-commit run --all-files