Skip to content

adding more comments to the env.example #1414

adding more comments to the env.example

adding more comments to the env.example #1414

Workflow file for this run

name: 'test'
on: [push]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: create env params
run: |
echo "ROBOKOP_HOME=$PWD" >> $GITHUB_ENV
mkdir -p $PWD/tests/workspace/storage
mkdir -p $PWD/tests/workspace/graphs
echo "ORION_STORAGE=$PWD/tests/workspace/storage" >> $GITHUB_ENV
echo "ORION_GRAPHS=$PWD/tests/workspace/graphs" >> $GITHUB_ENV
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --extra robokop --group dev
- name: Run pytest
run: uv run pytest tests/