Skip to content

style: apply ruff format to src/deploydiff/diff_renderer.py #101

style: apply ruff format to src/deploydiff/diff_renderer.py

style: apply ruff format to src/deploydiff/diff_renderer.py #101

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ --target-version py310
- name: Run tests
run: |
python -m pytest tests/ -v --cov=src --cov-report=term-missing