Skip to content

Update dependency colorlog to v6.12.0 #506

Update dependency colorlog to v6.12.0

Update dependency colorlog to v6.12.0 #506

Workflow file for this run

name: Lint
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
permissions: {}
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: Checkout the repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.14"
cache: "pip"
cache-dependency-path: |
requirements_common.txt
requirements_lint.txt
- name: Install requirements
run: |
python3 -m pip install -r requirements_common.txt
python3 -m pip install -r requirements_lint.txt
- name: Lint
run: python3 -m ruff check .
- name: Format
run: python3 -m ruff format . --check