Skip to content

Better demo

Better demo #25

Workflow file for this run

name: Kwalitee
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
Kwalitee:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Analysing the code with Mypy
run: |
mypy $(git ls-files 'term_timer/*.py') --strict
continue-on-error: true
- name: Analysing the code with Ruff
run: |
ruff check $(git ls-files 'term_timer/*.py')