Skip to content

bump version

bump version #14

Workflow file for this run

---
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint Python code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/preparation
- name: Check with pylint
run: uv run pylint src
- name: Check with mypy
run: uv run mypy src