Skip to content

Merge pull request #357 from PrefectHQ/docs #670

Merge pull request #357 from PrefectHQ/docs

Merge pull request #357 from PrefectHQ/docs #670

Workflow file for this run

name: Run tests
env:
# enable colored output
# https://github.com/pytest-dev/pytest/issues/7443
PY_COLORS: 1
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
run_tests:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
# python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ["3.9", "3.12"]
runs-on: ${{ matrix.os }}
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: download uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install ControlFlow
run: uv pip install --system ".[tests]"
- name: Run tests
run: pytest -vv
if: ${{ !(github.event.pull_request.head.repo.fork) }}