Spaces:
Running
Running
| name: tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Установить зависимости | |
| run: pip install -r requirements.txt -r requirements-dev.txt | |
| - name: Прогнать тесты | |
| run: pytest test_bot_helpers.py -v | |