Turn RegistryEntries
into an ABC
and create subclasses for frozen and non-frozen cases (part2 of #738).
#479
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
formatter: | |
name: auto-formatter | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install ruff | |
run: pip install ruff==0.6.9 | |
- name: Check format | |
run: python -m ruff format comtypes/. --check --diff | |
- name: Check lint | |
run: python -m ruff check --output-format=github comtypes/. |