Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Update dependency python to v3.13.6 #194

Update dependency python to v3.13.6

Update dependency python to v3.13.6 #194

Workflow file for this run

name: Code Quality Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Code Quality Checks
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.13.6
- run: pip install --upgrade pip
- run: pip install "black<23" pylint==v3.0.0a3 mypy==v0.991
- run: black --diff --check $(git ls-files '*.py')
- run: pylint --disable=all --enable=unused-import $(git ls-files '*.py')
- run: mypy --allow-untyped-decorators --ignore-missing-imports --no-warn-return-any --allow-subclassing-any --strict $(git ls-files '*.py')