scripts/generate_icons.py: mark --config-file argument as required #20
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
name: Check merge requirements | |
on: | |
pull_request: ~ | |
jobs: | |
pre-commit: | |
name: Prepare pre-commit base | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/[email protected] | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "uv.lock" | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Install pre-commit dependencies | |
run: | | |
uv run pre-commit install-hooks | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
python: | |
- '**/*.py' | |
mapping_yaml: | |
- 'mapping.yaml' | |
icons: | |
- 'icons_linux/**' | |
- name: Run ruff-format | |
if: steps.filter.outputs.python == 'true' | |
run: | | |
uv run pre-commit run --hook-stage manual ruff-format --all-files --show-diff-on-failure | |
env: | |
RUFF_OUTPUT_FORMAT: github | |
- name: Run ruff | |
if: steps.filter.outputs.python == 'true' | |
run: | | |
uv run pre-commit run --hook-stage manual ruff --all-files --show-diff-on-failure | |
env: | |
RUFF_OUTPUT_FORMAT: github | |
- name: Validate mapping | |
if: steps.filter.outputs.mapping_yaml == 'true' | |
run: | | |
uv run pre-commit run --hook-stage manual validate_mapping |