Skip to content

DALL-E 3 Generated banner #4

DALL-E 3 Generated banner

DALL-E 3 Generated banner #4

Workflow file for this run

name: Test
on: [push, pull_request]
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest