- CHANGELOG.md documents the 2026.04.21 initial release: full tool inventory, every reliability claim, and test count (66/66 green). - .github/workflows/ci.yml runs ruff check + pytest -m 'not network' across Python 3.10/3.11/3.12/3.13 on push and PR. Skips live archive.org tests in CI to keep runs fast and avoid hammering archive.org. - pyproject.toml [project.urls]: point Homepage / Repository / Bug Tracker / Changelog at git.supported.systems/rsp2k/mcarchive-org. Keep the archive.org developer docs link for context.
36 lines
740 B
YAML
36 lines
740 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v3
|
|
with:
|
|
enable-cache: true
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
run: uv python install ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: uv sync --all-extras
|
|
|
|
- name: Lint with ruff
|
|
run: uv run ruff check src/ tests/
|
|
|
|
- name: Run tests (skip live network tests)
|
|
run: uv run pytest -m 'not network' -v
|