Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

v1.1.0: Parser hardening, build detection, compare command, example r… #2

v1.1.0: Parser hardening, build detection, compare command, example r…

v1.1.0: Parser hardening, build detection, compare command, example r… #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Generate test fixture
run: python tests/generate_mock_data.py
- name: Ruff check
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: Pytest
run: pytest