Skip to content

fix: repair invalid syntax + undefined names (CI was unrunnable) #60

fix: repair invalid syntax + undefined names (CI was unrunnable)

fix: repair invalid syntax + undefined names (CI was unrunnable) #60

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Test (blocking)
run: pytest --cov=epistemic_forge --cov-report=term-missing --cov-fail-under=70