Skip to content

feat(series): implement abs, all, any, count, isin, and astype #39

feat(series): implement abs, all, any, count, isin, and astype

feat(series): implement abs, all, any, count, isin, and astype #39

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: mypy
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@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