Skip to content

Fix four latent pipeline bugs found in a full-pass review #81

Fix four latent pipeline bugs found in a full-pass review

Fix four latent pipeline bugs found in a full-pass review #81

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pyflakes
- name: Lint (pyflakes)
run: python -m pyflakes prox main.py
- name: Test (pytest)
run: python -m pytest tests/ -v