Skip to content

ci: add unit test workflow #10

ci: add unit test workflow

ci: add unit test workflow #10

name: Python Linters
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
python_linter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Python Setup
uses: actions/setup-python@v6
with:
python-version: 3.13
cache: 'pip'
cache-dependency-path: ./setup.cfg
- name: Install libraries
run: make python-install-development
- name: Run mypy
run: make mypy
- name: Run ruff
run: make ruff
- name: Run flake8
run: make flake8
- name: Run pylint
run: make pylint