OpenHands/.github/workflows/build_run-tests.yml
Graham Neubig 8f097f8643
Make poetry install manual and provide user with install instructions (#818)
* Add install instructions for poetry

* Update ci

* Move poetry before docker pull

* Added link
2024-04-06 12:38:12 -04:00

18 lines
411 B
YAML

name: Build & Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run tests
run: |
curl -sSL https://install.python-poetry.org | python3 -
make build
poetry run pytest ./tests