Bump ruff from 0.11.8 to 0.11.9 #244
Workflow file for this run
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: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lint-command: | |
- "ruff format --check --diff ." | |
- "ruff check --output-format=github ." | |
- "msgcheck -n vies/locale/*/LC_MESSAGES/*.po" | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install -y gettext aspell libenchant-2-dev | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- run: python -m pip install -e .[lint] | |
- run: ${{ matrix.lint-command }} | |
dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install -y gettext | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- run: python -m pip install --upgrade pip build twine | |
- run: python -m build --sdist --wheel | |
- run: python -m twine check dist/* | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/* | |
pytest: | |
needs: | |
- lint | |
- dist | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
python-version: | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
django-version: | |
- "4.2" | |
- "5.1" | |
- "5.2" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install -y gettext | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install .[test] | |
- run: python -m pip install django~=${{ matrix.django-version }}.0 | |
- run: python -m pytest | |
- uses: codecov/codecov-action@v5 | |
with: | |
flags: py${{ matrix.python-version }}-dj${{ matrix.django-version }} |