Skip to content

feat: preserve article atomic markdown blocks (#37) #162

feat: preserve article atomic markdown blocks (#37)

feat: preserve article atomic markdown blocks (#37) #162

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v6
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy twitter_cli
- name: Test
run: uv run pytest -q