Skip to content

build(deps-dev): bump ruff from 0.6.1 to 0.6.2 in /python (#221) #86

build(deps-dev): bump ruff from 0.6.1 to 0.6.2 in /python (#221)

build(deps-dev): bump ruff from 0.6.1 to 0.6.2 in /python (#221) #86

Workflow file for this run

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