Skip to content

created renderer prompt class #16

created renderer prompt class

created renderer prompt class #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest
- name: Lint code
run: |
flake8 .
- name: Run Oproof
run: |
python -m oproof "What is 2 + 2?" "4"