The default value of the team supervisor is set to None (#577) #630
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: 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 |