Skip to content

plan: resolve tool (PR-RESOLVE-1 → PR-RESOLVE-2) (#135) #76

plan: resolve tool (PR-RESOLVE-1 → PR-RESOLVE-2) (#135)

plan: resolve tool (PR-RESOLVE-1 → PR-RESOLVE-2) (#135) #76

Workflow file for this run

name: test
on:
pull_request:
push:
branches: [master]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run tests
env:
JAVA_CODEBASE_RAG_RUN_HEAVY: "0"
run: pytest tests -v