Skip to content

fix: integration idempotency suppressed banner #353

fix: integration idempotency suppressed banner

fix: integration idempotency suppressed banner #353

Workflow file for this run

name: tests
permissions:
contents: read
on:
push:
branches:
- 'master'
- 'main'
pull_request:
branches:
- 'master'
- 'main'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.14"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run tests with coverage
run: uv run pytest --cov --cov-report=term-missing --cov-report=xml
- name: Upload coverage report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coverage-report-${{ matrix.python-version }}
path: coverage.xml
if-no-files-found: warn
- name: Run linting
run: uv run ruff check .
- name: Check formatting
run: uv run ruff format --check .