Merge pull request #390 from PrefectHQ/openai-version #756
This file contains 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: 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) }} |