Skip to content

Merge pull request #193 from mmcdermott/dev #1

Merge pull request #193 from mmcdermott/dev

Merge pull request #193 from mmcdermott/dev #1

# Same as `code-quality-pr.yaml` but triggered on commit to main branch
# and runs on all files (instead of only the changed ones)
name: Code Quality Main
on:
push:
branches: [main]
jobs:
code-quality:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run pre-commits
uses: pre-commit/[email protected]