fix(ci): corrected LaTeX root_file relative path #32
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: NRC Math Vault CI | |
| on: | |
| push: | |
| branches: [ "master", "main" ] | |
| pull_request: | |
| branches: [ "master", "main" ] | |
| jobs: | |
| mathematical-integrity: | |
| name: Professional Math Audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| version: "latest" | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Dependencies | |
| run: | | |
| uv venv .venv | |
| uv pip install --index-url https://download.pytorch.org/whl/cpu torch | |
| uv pip install -e .[dev] | |
| - name: Format Check (Ruff) | |
| run: uv run ruff format --check . | |
| - name: Lint Check (Ruff) | |
| run: uv run ruff check . | |
| - name: Type Compliance (Mypy) | |
| run: uv run mypy . | |
| - name: Verification Suite (Pytest) | |
| run: uv run pytest tests/ |