build(deps-dev): bump ruff from 0.7.0 to 0.7.1 in /python #109
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: Python | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/python.yml" | |
- "**.py" | |
- "python/poetry.lock" | |
- "python/pyproject.toml" | |
pull_request: | |
paths: | |
- ".github/workflows/python.yml" | |
- "**.py" | |
- "python/poetry.lock" | |
- "python/pyproject.toml" | |
# Cancel previous runs for PRs but not pushes to main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./python | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: isort | |
uses: isort/isort-action@v1 | |
with: | |
requirements-files: "python/requirements.txt" | |
sort-paths: python | |
- name: Ruff format | |
uses: chartboost/ruff-action@v1 | |
with: | |
src: "./python" | |
args: format --check --verbose | |
- name: Ruff lint | |
uses: chartboost/ruff-action@v1 | |
with: | |
src: "./python" | |
args: check --verbose |