Skip to content

Remove unused command #29

Remove unused command

Remove unused command #29

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Lint code 🧹
run: |
uv run ruff check tests/ messageformat2/ --exclude messageformat2/cli.py
- name: Type check 🏷
run: |
uv run ty check messageformat2/ tests/
- name: Run tests 🧪
run: |
uv run pytest --no-cov --doctest-modules