Remove unused command #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |