create the poetry virtualenv inside the project #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test and Build" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: "Setup poetry" | |
uses: abatilo/actions-poetry@v2 | |
- name: "Load cached venv" | |
id: cached-poetry-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ hashFiles('**/flake.lock') }}-${{ hashFiles('**/poetry.lock') }} | |
- name: "Install python dependencies" | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction --no-root | |
shell: bash | |
- name: "Test" | |
env: | |
OPENAI_API_KEY: ${{ secrets.openai_api_key }} | |
TEST_USE_OPENAI: "true" | |
run: 'poetry run pytest' | |
shell: bash |