Skip to content

Bump ruff from 0.8.3 to 0.8.4 #1180

Bump ruff from 0.8.3 to 0.8.4

Bump ruff from 0.8.3 to 0.8.4 #1180

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
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Running pylint
run: |
python -m pip install --quiet --no-cache-dir --upgrade poetry
poetry install
poetry run ruff check $(basename $(pwd))
poetry run ruff check tests