Skip to content

fix(export): prompt in workspace.yaml now describes PR changes #46

fix(export): prompt in workspace.yaml now describes PR changes

fix(export): prompt in workspace.yaml now describes PR changes #46

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Run tests with coverage
if: matrix.python == '3.12'
run: pytest tests/ -v --cov=src/swe_forge --cov-report=term-missing