fix: change color of output inspector when tool mode, change fuzzy search order, fix image download and some minor issues #8229
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: Ruff Style Check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, auto_merge_enabled] | |
paths: | |
- "**/*.py" | |
jobs: | |
lint: | |
name: Ruff Style Check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.12" | |
steps: | |
- name: Check out the code at a specific ref | |
uses: actions/checkout@v4 | |
- name: "Setup Environment" | |
uses: ./.github/actions/setup-uv | |
- name: Register problem matcher | |
run: echo "::add-matcher::.github/workflows/matchers/ruff.json" | |
- name: Run Ruff Check | |
run: uv run --only-dev ruff check --output-format=github . | |
- name: Minimize uv cache | |
run: uv cache prune --ci |