Skip to content

Написан action удаления пользователей, не заходивших больше пол года. #786

Написан action удаления пользователей, не заходивших больше пол года.

Написан action удаления пользователей, не заходивших больше пол года. #786

Workflow file for this run

name: Run pytest
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
name: Check the code with python linters
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python -
poetry config virtualenvs.in-project true
poetry install
- name: Run pytest
run: poetry run pytest