Skip to content

Merge pull request #33 from BasLinders/expose-sampling-stratification #77

Merge pull request #33 from BasLinders/expose-sampling-stratification

Merge pull request #33 from BasLinders/expose-sampling-stratification #77

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