Skip to content

Fix issue #127: Upload resolver output to Share-OpenHands and also send the URL to the Github issue #365

Fix issue #127: Upload resolver output to Share-OpenHands and also send the URL to the Github issue

Fix issue #127: Upload resolver output to Share-OpenHands and also send the URL to the Github issue #365

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
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.12
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: poetry run pytest tests/test*.py -v
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files