Skip to content

Add Custom Rule Framework with YAML-based DSL and Pattern Matching #88

Add Custom Rule Framework with YAML-based DSL and Pattern Matching

Add Custom Rule Framework with YAML-based DSL and Pattern Matching #88

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
permissions:
contents: read
jobs:
pre-commit:
name: Pre-commit Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: 'pip'
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files