Skip to content
This repository was archived by the owner on Feb 27, 2026. It is now read-only.

build(deps-dev): Bump ruff from 0.14.3 to 0.14.4 #60

build(deps-dev): Bump ruff from 0.14.3 to 0.14.4

build(deps-dev): Bump ruff from 0.14.3 to 0.14.4 #60

Workflow file for this run

on: [ push, pull_request ]
name: Test
permissions:
contents: read
jobs:
code-quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Copy files from repo
uses: actions/checkout@v5
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install
- name: Run Ruff
run: poetry run ruff check .; poetry run ruff check . --diff
- name: Run Radon
run: poetry run radon cc ./confy_cli -a -na
- name: Run Bandit
run: poetry run bandit -r ./confy_cli
- name: Run MyPy
run: poetry run mypy -p confy_cli --ignore-missing-imports