Skip to content

add hello workflow

add hello workflow #4

Workflow file for this run

name: API Tests
on:
push:
branches:
- main
- dev
- test-api
- dan2
workflow_dispatch:
jobs:
api-tests:
steps:

Check failure on line 14 in .github/workflows/api-tests.yml

View workflow run for this annotation

GitHub Actions / API Tests

Invalid workflow file

The workflow is not valid. .github/workflows/api-tests.yml (Line: 14, Col: 5): Required property is missing: runs-on
- 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 }}
working-directory: wdl-tests
run: uv run pytest tests/proof-api/ --verbose