Skip to content

Merge branch 'master' of https://github.com/Studio-Yandex-Practicum/a… #625

Merge branch 'master' of https://github.com/Studio-Yandex-Practicum/a…

Merge branch 'master' of https://github.com/Studio-Yandex-Practicum/a… #625

Workflow file for this run

name: Pytest
on:
push:
branches:
- dev
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