Skip to content

feat(kc-compat): add --report flag to output system info before status #3

feat(kc-compat): add --report flag to output system info before status

feat(kc-compat): add --report flag to output system info before status #3

Workflow file for this run

name: Tests
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up project
run: uv sync --dev
- name: Run tests
run: uv run pytest test_kc_compat.py -v