Skip to content

Fix: Parse comma-separated analyzer names correctly #16

Fix: Parse comma-separated analyzer names correctly

Fix: Parse comma-separated analyzer names correctly #16

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python for uv
uses: astral-sh/setup-uv@v6.7.0
# Set up the Python version for the test environment
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Run tests
run: uv run pytest