Skip to content

Update ruff requirement from >=0.0.257,<0.4.3 to >=0.0.257,<0.4.5 #371

Update ruff requirement from >=0.0.257,<0.4.3 to >=0.0.257,<0.4.5

Update ruff requirement from >=0.0.257,<0.4.3 to >=0.0.257,<0.4.5 #371

Workflow file for this run

name: pylint
"on":
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Running tests
run: |
python -m pip install --quiet --no-cache-dir --upgrade poetry
poetry install
poetry run ruff $(basename $(pwd) | sed -E 's/-/_/g')
poetry run ruff tests/
poetry run validate-pyproject pyproject.toml