Skip to content

Implementing matrix strategy to speed up gha-only tests #33

Implementing matrix strategy to speed up gha-only tests

Implementing matrix strategy to speed up gha-only tests #33

Workflow file for this run

name: API Tests
on:
push:
branches:
- main
- dev
- test-api
pull_request:
workflow_dispatch:
jobs:
api-tests:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.8"
- name: Set up Python
run: uv python install 3.13
- name: Run tests
env:
PROOF_API_TOKEN_DEV: ${{ secrets.PROOF_API_TOKEN_DEV }}
run: uv run pytest tests/proof-api/ --verbose