Skip to content

ci: Add actionlint and zizmor #109

ci: Add actionlint and zizmor

ci: Add actionlint and zizmor #109

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
name: mypy
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
persist-credentials: false
- name: Install uv and set the python version
uses: astral-sh/setup-uv@60f9666828d33cc321ea5a5c02042d940f790682 # v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run type checker
run: uv run mypy leanframe tests