Skip to content

feat: added README.md status badge #46

feat: added README.md status badge

feat: added README.md status badge #46

Workflow file for this run

name: Linters
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13
- name: Install libraries
run: make python-install-development
- name: mypy
run: make mypy
- name: ruff
run: make ruff
- name: flake8
run: make flake8