Skip to content

Merge pull request #86 from dnadlinger/pyqt6-fixes #117

Merge pull request #86 from dnadlinger/pyqt6-fixes

Merge pull request #86 from dnadlinger/pyqt6-fixes #117

Workflow file for this run

name: "Check with pre-commit"
permissions:
contents: read
on:
push:
branches: ["main"]
pull_request:
jobs:
check-with-pre-commit:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.14"]
steps:
- uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
with:
persist-credentials: false
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405" # v6
with:
python-version: "${{ matrix.python-version }}"
- name: "Install pre-commit"
run: "pip install pre-commit"
- name: "Run lint and format checks"
run: "make lint"