Skip to content

Tag datetime fix

Tag datetime fix #232

Workflow file for this run

name: Code stability
on:
push:
branches:
- main
pull_request:
branches:
- "*"
concurrency:
group: stability-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
stability:
name: Code stability
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Install tools
run: pip install black ruff
- name: Run ruff checks
run: ruff check src/
- name: Run black checks
run: black --check --verbose --diff --color src/
- name: Run mypy checks
run: mypy --explicit-package-bases src/