Merge branch 'main' into claude/fix-ann001-violations-hqBw8 #2122
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: tests | |
| # 'workflow_dispatch' is manually from the Actions tab | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: | | |
| uv venv | |
| uv pip install -r requirements.txt | |
| uv pip install -e .[dev] --no-deps | |
| - name: Test | |
| run: ./meta/run_tests.sh | |
| # Copyright (C) 2025, 2026 Angelos Evripiotis. | |
| # Generated with assistance from Claude Code. |