Skip to content

Bump the python-dependencies group across 1 directory with 6 updates … #52

Bump the python-dependencies group across 1 directory with 6 updates …

Bump the python-dependencies group across 1 directory with 6 updates … #52

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/
- name: Type check 🏷
run: |
uv run ty check messageformat2/ tests/
- name: Run tests 🧪
run: |
uv run pytest --no-cov --doctest-modules