Skip to content

Initial PatchGym benchmark harness #1

Initial PatchGym benchmark harness

Initial PatchGym benchmark harness #1

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "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 -e ".[dev]"
- name: Test
run: pytest -q
- name: Demo
run: patchgym demo --keep-dir patchgym-demo-ci