Create basic testing pipeline (#1)
All checks were successful
Pytest / Explore-Gitea-Actions (push) Successful in -13m33s

Reviewed-on: #1
This commit is contained in:
Alex Selimov 2025-03-22 13:46:32 +00:00
parent 05d9382b7d
commit d497a62f7f

View File

@ -6,5 +6,7 @@ jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: python -m pip install --upgrade pip && pip install poetry
- run: poetry install && poetry run pytest -v
- run: pipx install poetry && sudo apt-get update &&sudo apt-get install python3-dev -y
- run: git clone https://www.alexselimov.com/git/aselimov/code_rag.git && cd code_rag && git checkout ${{ gitea.ref_name }}
- run: cd code_rag && /root/.local/bin/poetry install
- run: cd code_rag && /root/.local/bin/poetry run pytest -v