adding more comments to the env.example #1414
Workflow file for this run
This file contains hidden or 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' | |
| 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/ |