Tag datetime fix #236
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | |
# This is currently disabled because MyPy is very confused about Coroutine types | |
# - name: Run mypy checks | |
# run: mypy --explicit-package-bases src/ |