integrations

GitHub Actions Advanced

Matrix builds, caching, and benchmark reporting in GitHub Actions.

Published May 30, 2026

Matrix Builds

strategy:
  matrix:
    python: ["3.11", "3.12"]
    opt: [2, 3]

Benchmark Reporting

- run: pyvorin benchmark app.py --runs 10 > benchmark.txt
- uses: actions/upload-artifact@v4
  with:
    name: benchmark-results
    path: benchmark.txt