Feature/convert ci cd to the prod #618
Workflow file for this run
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: CI | |
on: [pull_request] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
name: pytest | |
steps: | |
- name: Установка Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Установка Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
poetry-version: 1.5.0 | |
- name: Извлечение репозитория | |
uses: actions/checkout@v4 | |
- name: Установка зависимостей | |
run: | | |
poetry install | |
- name: pytest | |
run: | | |
poetry run pytest | |
working-directory: adaptive_hockey_federation |