That should work best #128
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 Pytest | |
on: | |
push: | |
branches: | |
- rk/* | |
jobs: | |
pdp-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Python setup | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11.8' | |
- name: Run Pytests | |
run: | | |
python -m pip install --upgrade pip | |
pip install ".[dev]" | |
pytest -s --cache-clear horizon/tests/ |